@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,300;0,700;1,600&display=swap');
*{
  font-family: Montserrat;
}

nav a{
  text-decoration: none;
}

body {
  background-color: #f9f8f8;
  margin: 0;
  padding: 0;
}

i {
  cursor: pointer;
}

.spaceFiller {
  flex: 1 1 auto;
}

#deleteCustomer {
  display: none;
}

.capitalize {
  text-transform: capitalize;
}

.whiteText {
  color: #fff;
}

.grayText {
  color: #6B6B6B;
}

.formInput {
  border: #B3B4B2 thin solid;
  border-radius: 30px;
  height: 30px;
  margin-bottom: 20px;
  padding: 10px;
  font-weight: bold;
  color: #6B6B6B;
}

@media only screen and (max-device-width: 900px) {

  body {
    width: 100%;
  }

  .desktop {
    display: none;
  }

  .topBar {
    visibility: hidden;
    display: none;
  }

  .topBar h1 {
    font-weight: bold;
  }

  #searchMobile {
    width: 175%;
    margin-left: -40%;
    border-radius: 10px;
    border: none;
    font-size: 2rem;
    padding: 5px;
  }

  #searchMobile:focus {
    outline: none;
  }

  nav {
    visibility: hidden;
    display: none;
  }

  .logoPhone {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }

  .logo {
    width: 100%;
  }

  .whiteBox {
    margin: 45px 20px;
    padding: 40px 0px;
    background-color: white;
    border-radius: 40px;
  }

  .icon {
    visibility: hidden;
  }

  .LrgBtnPrim {
    display: flex;
    align-items: center;
    text-align: center;
    width: 90%;
    height: 6rem;
    margin: 10px 20px 10px 20px;
    background-color: #ef8130; /* Dark orange */
    color: #393a3a;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 35px;
  }

  .NewInput {
    display: flex;
    align-items: center;
    text-align: center;
    width: 90%;
    height: 6rem;
    margin: 10px 20px 10px 20px;
    color: #393a3a;
    border: none;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 35px;
    border: solid 3px #ef8130;
  }

  .LrgBtnScnd {
    text-align: center;
    width: 90%;
    min-height: 6rem;
    max-height: fit-content;
    margin: 10px 20px 10px 20px;
    background-color: #f6b181; /* Light orange */
    color: #706e6e;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 35px;
  }

  .LrgBtnPrim.focus,.LrgBtnPrim:focus{
    color:#fff;
    background-color:#ef7230;
  }

  .LrgBtnPrim:hover{
    color:#fff;
    background-color:#ef7230;
    cursor: pointer;
  }

  .LrgBtnScnd.focus,.LrgBtnPrim:focus{
    color:#fff;
    background-color:#f6b157;
  }

  .LrgBtnScnd:hover{
    color:#fff;
    background-color:#f6b157;
    cursor: pointer;
  }

  #selectActiveSection {
    display: flex;
    flex-direction: row;
    padding: 0px 60px;
    height: 30px;
    font-size: 25px;
    margin-bottom: 20px;
  }

  #timer {
    float: right;
  }

  .timerTable {
    width: 100%;
  }

  .timerTable tbody tr {
    width: 100%;
    height: 7rem;
    display: grid;
    grid-template-columns: 33% 33% 33%;
    border-bottom: black solid 1px;
    padding-top: 15px;
  }
  

  .timerTable tbody tr td {
    text-align: center;
  }

  .action {
    text-align: left !important;
    padding-left: 15px;
    font-weight: 700;
  }

  .totals td {
    font-weight: 700;
  }

  .logs {
    min-height: fit-content !important;
  }

  .logTable {
    width: 100%;
  }

  .logRow {
    display: grid;
    grid-template-columns: 20% 20% 60% !important;
    border-left: solid black 1px;
    border-right: solid black 1px;
    margin: 0px;
    padding-top: 0px !important;
    height: fit-content !important;
  }

  .logRow td {
    border: solid black 1px;
  }

  .logRow td:last-child {
    text-align: left;
  }

  .timerTable tbody tr td:nth-child(5), .timerTable tbody tr td:nth-child(6) {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .timerTable tbody tr td:nth-child(5) button, .timerTable tbody tr td:nth-child(6) button {
    margin: 0 auto;
  }

  .start, .stop, .completeJob {
    border: none;
    height: 80%;
    width: 90%;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    border-radius: 15px;
  }

  .start {
    background-color: #ef8130; /* Dark orange */
    color: #393a3a;
  }

  .stop {
    background-color: #ff0000; /* Dark orange */
    color: #b3b3b1;
  }

  .completeJob {
    background-color: chartreuse;
  }

}

@media only screen and (min-device-width: 900px) {

  body {
    width: 100%;
    display: grid;
    grid-template-columns: 15% 85%;
  }

  .mobile {
    display: none;
  }

  .logo {
      width: 50%;
      margin-top: 2%;
      margin-left: 8%;
  }

  .topBar {
    background-color: #ef812f;
    padding: 20px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .topBar h1 {
    font-weight: 700;
  }

  #search {
    width: 40%;
    border-radius: 20px;
    border: none;
    height: 40px;
    padding: 5px;
  }

  #search:focus {
    outline: none;
  }

  nav {
    background-color: white;
    max-width: 100%;
  }

  .navi {
    max-width: 90%;
    padding-left: 15px;
  }

  .navBtn {
    cursor: pointer;
    text-align: left;
    padding: 10px 40px;
    margin-top: 100px;
    border-radius: 10px;
    width: 80%;
    font-weight: bold;
    color: #393a3a !important;
  }
  
  .navBtn:hover{
    color:#fff !important;
    background-color:#ef7230;
  }

  .active {
    color:#fff !important;
    background-color:#ef7230;
    padding: 10px 40px;
  }

  ul {
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
    list-style-type: none;
    float: left;
    position: relative;
  }

  .whiteBox {
    margin: 45px 40px;
    padding: 40px 0px;
    background-color: white;
    border-radius: 40px;
  }

  .icon {
    visibility: visible;
    float: right;
    position: relative;
    padding-right: 5%;
  }

  .logoPhone {
    visibility: hidden;
    display: none;
  }
  
  .LrgBtnPrim {
    display: block;
    margin: 20px auto;
    text-align: center;
    height: 50px;
    width: 90%;
    background-color: #ef8130; /* Dark orange */
    color: #393a3a;
    border: none;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 15px;
  }

  .NewInput {
    display: block;
    margin: 20px auto;
    text-align: center;
    height: 50px;
    width: 90%;
    color: #393a3a;
    border: none;
    text-align: left;
    border: solid 3px #ef8130;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 15px;
  }
  
  .LrgBtnScnd {
    margin: 10px 10px;
    text-align: center;
    height: 50px;
    background-color: #f6b181; /* Light orange */
    color: #706e6e;
    border: none;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 15px;
  }
  
  .LrgBtnPrim.focus,.LrgBtnPrim:focus{
    color:#fff;
    background-color:#ef7230;
  }
  
  .LrgBtnPrim:hover{
    color:#fff;
    background-color:#ef7230;
    cursor: pointer;
  }
  
  .LrgBtnScnd.focus,.LrgBtnPrim:focus{
    color:#fff;
    background-color:#f6b157;
  }
  
  .LrgBtnScnd:hover{
    color:#fff;
    background-color:#f6b157;
    cursor: pointer;
  }

  #selectActiveSection {
    display: flex;
    flex-direction: row;
    padding: 0px 60px;
  }

  .buttonGrid {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
  }

  .newProjectFormAmountInputs {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: row;
  }

  .numberInput:first-child {
    margin-right: 10px;
    margin-left: -5px
  }

  .numberInput:last-child {
    margin-left: 10px;
    margin-right: -5px
  }

  .timerTable {
    width: 100%;
  }

  .timerTable tbody tr {
    width: 100%;
    height: 50px;
    display: grid;
    grid-template-columns: 20% 10% 16% 16% 16% 16% 5%;
    border-bottom: black solid 1px;
    padding-top: 15px;
  }

  .timerTable tbody tr td {
    text-align: center;
  }

  .action {
    text-align: left !important;
    padding-left: 15px;
    font-weight: 700;
  }

  .totals td {
    font-weight: 700;
  }

  .logs {
    min-height: fit-content !important;
  }

  .logTable {
    width: 100%;
  }

  .logRow {
    display: grid;
    grid-template-columns: 15% 15% 10% 60% !important;
    border-left: solid black 1px;
    border-right: solid black 1px;
    margin: 0px;
    padding-top: 0px !important;
    height: fit-content !important;
  }

  .logRow td {
    border: solid black 1px;
  }

  .logRow td:last-child {
    text-align: left;
  }

  .timerTable tbody tr td:nth-child(5), .timerTable tbody tr td:nth-child(6) {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .timerTable tbody tr td:nth-child(5) button, .timerTable tbody tr td:nth-child(6) button {
    margin: 0 auto;
  }

  .start, .stop, .completeJob {
    border: none;
    height: 80%;
    width: 90%;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    border-radius: 15px;
  }

  .start {
    background-color: #ef8130; /* Dark orange */
    color: #393a3a;
  }
  
  .stop {
    background-color: #ff0000; /* Dark orange */
    color: #b3b3b1;
  }

  .completeJob {
    background-color: chartreuse;
  }

  .noActiveTimersMessage {
    padding-left: 12px;
  }

  .landingWhiteBox {
    padding: 0px;
    display: grid;
    grid-template-columns: 66% 34%;
    height: 80vh;
  }

  .welcomeMessage {
    background-color: #EF812F;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 40px 0px 0px 40px;
    padding: 45px;
  }

  .landingHeader {
    font-size: 50px;
    margin: 0px;
  }

  .formTitle {
    font-size: 30px;
  }

  .signupForm {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .signupForm form {
    display: flex;
    flex-direction: column;
  }

  label {
    margin: 5px 0px 15px 0px;
  }

}

.saveNew {
  display: none !important;
}