*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
    scroll-behavior: smooth;
}

.navbar {
    background:#fff ;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;

}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px ;
    margin: 0 auto;
    padding: 0 50px;
}

img {
  padding-right: 10px;
  max-width: 60px;
  max-height: 40px;
  object-fit: contain;
}

#navbar__logo {
    background-color: #ff8177;
    background-image: linear-gradient(to right, #fd7481 5%, #8fcfff 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.navbar__item {
height: 80px;
}

.navbar__links {
    color: #131313;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 125px;
    text-decoration: none;
    height: 100%;
    transition: all 0.3s ease;
}


.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #75aa12;
    background: -webkit-linear-gradient(to right, #fd7481 , #8fcfff );
    background: linear-gradient(to right, #fd7481 , #8fcfff);
    color: #131313;
    transition: all 0.3s ease;
}

.navbar__links:hover {
    color:#72addd;
    transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px; 
        opacity: 1;
        transition: all 0.5s ease;
        z-index: -1;
      }

    .navbar__menu.active {
        background: #fff;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 60vh;
        font-size: 1.6rem;
      }

    #navbar__logo {
        padding-left: 25px;
    }

    .navbar__toggle .bar{
        width: 25px;
        height: 3px;
        margin: 5px;
        transition: all 0.5s ease-in-out;
        background: #131313;      
    }

    .navbar__item {
        width: 100%;

    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }   

    .navbar__btn {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
      }
    
      #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
      }
    
      #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }
    
      #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }
}

/* Hero Section */
.hero {
    height: 800px;
    background-image: url('/images/cherryfarm1.jpg');
    background-size:     cover;                      
    background-repeat:   no-repeat;
    background-position: center center;  
  }
  
  .hero__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 90%;
    text-align: center;
    padding: 30px;
  }
  
  .hero__heading {
    font-size: 100px;
    margin-bottom: 24px;
    color: #fff;
  }

  .hero__heading span {
    background: #d32131; 
    background: -webkit-linear-gradient(to right, #fd7481 , #d32131); 
    background: linear-gradient(to right, #fd7481, #d32131); 
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -mo-text-fill-color: transparent;
  }
  .highlight {
    border-bottom: 4px solid #75aa12;
  }

  @media screen and (max-width: 768px) {
    .hero__heading {
      font-size: 60px;
    }
  }

  /* About Section */
.main {
    background-color: #ececec;
    background: -webkit-linear-gradient(to right, #fff , #ececec); 
    background: linear-gradient(to right, #fff, #ececec); 
    padding: 10rem 0;
  }
  
  .main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 90%;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
  }
  
  .main__content {
    color: #000;
    width: 100%;
  }
  
  .main__content h1 {
    font-size: 2rem;
    background-color: #d32131;
    background-image: linear-gradient(to right, #fd7481 0%, #d32131 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 32px;
  }
  
  .main__content h2 {
    font-size: 2rem;
    background: #75aa12;
    background: -webkit-linear-gradient(to right, #1b8604 , #75aa12); 
    background: linear-gradient(to right, #1b8604, #75aa12); 
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
  }
  
  .main__content p {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .main__btn {
    font-size: 1.8rem;
    background: #75aa12;
    background: -webkit-linear-gradient(to right, #fd7481, #8fcfff, #75aa12);
    background: linear-gradient(to right, #fd7481, #8fcfff, #75aa12);
    padding: 20px 60px;
    border: none;
    border-radius: 4px;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
  }
  
  .main__btn a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
  }
  
  .main__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #75aa12;
    transition: all 0.35s;
    border-radius: 4px;
  }
  
  .main__btn:hover {
    color: #fff;
  }
  
  .main__btn:hover:after {
    width: 100%;
  }
  
  .main__img--container {
    text-align: center;
  }
  
  .main__img--card {
    margin: 10px;
    height: 500px;
    width: 500px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background-image: url('/images/cherrytote.jpg');
    background-size:     cover;                      
    background-repeat:   no-repeat;
    background-position: center center;  
  }

  #card-2 {
    background: #ff512f;
    background: -webkit-linear-gradient(to right, #dd2476, #ff512f);
    background: linear-gradient(to right, #dd2476, #ff512f);
  }
  
  /* Mobile Responsive */
  @media screen and (max-width: 1100px) {
    .main__container {
      display: grid;
      grid-template-columns: 1fr;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin: 0 auto;
      height: 90%;
    }
  
    .main__img--container {
      display: flex;
      justify-content: center;
    }
  
    .main__img--card {
      height: 425px;
      width: 425px;
    }
  
    .main__content {
      text-align: center;
      margin-bottom: 4rem;
    }
  
    .main__content h1 {
      font-size: 2rem;
      margin-top: 2rem;
    }
  
    .main__content h2 {
      font-size:2rem;
    }
  
    .main__content p {
      margin-top: 1rem;
      font-size: 1.5rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .main__img--card {
      width: 250px;
      height: 250px;
    }
  
    .main__content h1 {
      font-size: 2rem;
      margin-top: 3rem;
    }
    .main__content h2 {
      font-size: 2rem;
    }
  
    .main__content p {
      margin-top: 1.5rem;
    }
  
    .main__btn {
      padding: 12px 36px;
      margin: 2.5rem 0;
    }
  }

  /*Services*/
  .services {
    background-color: #ececec;
    background: -webkit-linear-gradient(to right, #fff , #ececec); 
    background: linear-gradient(to right, #fff, #ececec); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem 0;
  }
  
  .services__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
  }
  
  .services__card {
    margin: 10px;
    height: 425px;
    width: 300px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background-image: linear-gradient(to right, #fd7481 0%, #8fcfff 100%);
    transition: 0.3s ease-in;
  }
  
  .services__card2 {
    margin: 10px;
    height: 425px;
    width: 300px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background-image: linear-gradient(to right, #8fcfff 0%, #75aa12 100%);
    transition: 0.3s ease-in;
  }
  .services__card h2 {
    text-align: center;
  }
  .services__card2 h2 {
    text-align: center;
  }
  .services__card p {
    text-align: center;
    margin-top: 24px;
    font-size: 20px;
  }
  .services__card2 p {
    text-align: center;
    margin-top: 24px;
    font-size: 20px;
  }
  
  
  .services__btn {
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }
  
  .services__card button {
    color: #fff;
    padding: 14px 24px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #131313;
    font-size: 1rem;
  }
  
  .services__card button:hover {
    cursor: pointer;
  }
  
  .services__card:hover {
    transform: scale(1.075);
    transition: 0.3s ease-in;
    cursor: pointer;
  }

  .services__btn2 {
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }
  
  .services__card2 button {
    color: #fff;
    padding: 14px 24px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #131313;
    font-size: 1rem;
  }
  
  .services__card2 button:hover {
    cursor: pointer;
  }
  
  .services__card2:hover {
    transform: scale(1.075);
    transition: 0.3s ease-in;
    cursor: pointer;
  }
  
  @media screen and (max-width: 1300px) {
    .services__wrapper {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media screen and (max-width: 768px) {
    .services__wrapper {
      grid-template-columns: 1fr;
    }
  }

  /* Footer CSS */
.footer__container {
    background-color: #ececec;
    background: -webkit-linear-gradient(to right, #fff , #ececec); 
    background: linear-gradient(to right, #fff, #ececec); 
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #footer__logo {
    color: #000;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
  }
  
  .footer__links {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
  }
  
  .footer__link--wrapper {
    display: flex;
  }
  
  .footer__link--items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
  }
  
  .footer__link--items h2 {
    margin-bottom: 16px;
    color: #000;
  }
  
  .footer__link--items a {
    color: #000;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: 0.3 ease-out;
  }
  
  .footer__link--items a:hover {
    color: #161616;
    transition: 0.3 ease-out;
  }
  
  .social__icon--link {
    color: #000;
    font-size: 24px;
  }
  
  .social__media {
    max-width: 1000px;
    width: 100%;
  }
  
  .social__media--wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
  }
  
  .social__icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 240px;
  }
  
  .website__rights {
    color: #000;
  }
  
  @media screen and (max-width: 820px) {
    .footer__links {
      padding-top: 2rem;
    }
  
    #footer__logo {
      margin-bottom: 2rem;
    }
  
    .website__rights {
      margin-bottom: 2rem;
    }
  
    .footer__link--wrapper {
      flex-direction: column;
    }
  
    .social__media--wrap {
      flex-direction: column;
    }
  }
  
  @media screen and (max-width: 480px) {
    .footer__link--items {
      margin: 0;
      padding: 10px;
      width: 100%;
    }
  }

  /* Login */
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
  }
  body{
    background-color: #ececec;
    background: -webkit-linear-gradient(to right, #fff , #ececec); 
    background: linear-gradient(to right, #fff, #ececec); 
  }
  ::selection{
    background: #75aa12;
  }
  .container{
    max-width: 440px;
    padding: 0 20px;
    margin: 170px auto;
  }
  .wrapper{
    width: 100%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 10px 1px rgba(0,0,0,0.1);
  }
  .wrapper .title{
    height: 90px;
    background-color: #ff8177;
    background-image: linear-gradient(to right, #fd7481 5%, #8fcfff 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    border-radius: 5px 5px 0 0;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wrapper form{
    padding: 30px 25px 25px 25px;
  }
  .wrapper form .row{
    height: 45px;
    margin-bottom: 15px;
    position: relative;
  }
  .wrapper form .row input{
    height: 100%;
    width: 100%;
    outline: none;
    padding-left: 60px;
    border-radius: 5px;
    border: 1px solid lightgrey;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  form .row input:focus{
    border-color: #8fcfff;
    box-shadow: inset 0px 0px 2px 2px fd7481;
  }
  form .row input::placeholder{
    color: #999;
  }
  .wrapper form .row i{
    position: absolute;
    width: 47px;
    height: 100%;
    color: #fff;
    font-size: 18px;
    background: #8fcfff;
    border: 1px solid #8fcfff;
    border-radius: 5px 0 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wrapper form .pass{
    margin: -8px 0 20px 0;
  }
  .wrapper form .pass a{
    color: #8fcfff;
    font-size: 17px;
    text-decoration: none;
  }
  .wrapper form .pass a:hover{
    text-decoration: underline;
  }

  .wrapper form .button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
  }
  .Login__btn {
    font-size: 2Rem;
    background: #75aa12;
    background: -webkit-linear-gradient(to right, #fd7481, #8fcfff, #75aa12);
    background: linear-gradient(to right, #fd7481, #8fcfff, #75aa12);
    padding: 20px;
    width: 100%;
    border: none;
    border-radius: 4px;
    margin-top: 1rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;

  }
  
  .Login__btn a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
  }
  
  .Login__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #75aa12;
    transition: all 0.35s;
    border-radius: 4px;
  }
  
  .Login__btn:hover {
    color: #fff;
  }
  
  .Login__btn:hover:after {
    width: 100%;
  }

  .Submit__btn {
    font-size: 1.5Rem;
    background: #75aa12;
    background: -webkit-linear-gradient(to right, #fd7481, #8fcfff, #75aa12);
    background: linear-gradient(to right, #fd7481, #8fcfff, #75aa12);
    padding: 10px;
    width: 70%;
    border: none;
    border-radius: 4px;
    margin-top: 1rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;

  }
  
  .Submit__btn a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
  }
  
  .Submit__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #75aa12;
    transition: all 0.35s;
    border-radius: 4px;
  }
  
  .Submit__btn:hover {
    color: #fff;
  }
  
  .Submit__btn:hover:after {
    width: 100%;
  }

  .error {
    text-align: center;
    margin-top: 24px;
    font-size: 1rem;
    color: red;
  }

  .Timecard {
    background-color: #ececec;
    background: -webkit-linear-gradient(to right, #fff , #ececec); 
    background: linear-gradient(to right, #fff, #ececec); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 2rem 0;
  }
  .Timecard__container h1{
    font-size: 1.5rem;
    background-color: #d32131;
    background-image: linear-gradient(to right, #fd7481 0%, #d32131 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    margin-top: 40px;
  }

  .Timecard__container {
    width: 100%;
    max-width: 600px;
    height: 600px;
    padding: 0 20px;
    margin: 20 auto;
  }

  .wrappertimecard {
    height: 100%;
    padding: 20px 20px;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 10px 1px rgba(0,0,0,0.1);
  }

  .wrappertimecard form{
    padding: 30px 25px 25px 25px;
  }
  .wrappertimecard form .row{
    height: 35px;
    margin-bottom: 15px;
    text-align: left;
    position: relative;
  }

  .wrappertimecard form .row2{
    height: 35px;
    margin-bottom: 80px;
    text-align: left;
    position: relative;
  }

  /* Styling for the rows (including time input rows) */
.wrappertimecard form .rowtime {
    display: flex;              /* Flexbox for layout */
    justify-content: space-between; /* Ensures the elements inside are spaced out */
    align-items: center;        /* Centers content vertically */
    margin-bottom: 15px;        /* Adds space between rows */
}

/* Styling for time input fields */
.rowtime input {
    width: 65%; /* Makes the input field take up most of the row */
    padding: 8px; /* Adds padding to make the input box larger and easier to click */
    font-size: 16px; /* Makes the text inside the input box readable */
    border-radius: 5px; /* Adds rounded corners to the input */
    border: 1px solid #ccc; /* Adds a light border to the input */
    background-color: #f9f9f9; /* Light background color */
    cursor: pointer; /* Changes cursor to a pointer when hovered over */
}

/* Focus effect for time input fields */
.rowtime input:focus {
    border-color: #66afe9; /* Changes border color on focus */
    outline: none; /* Removes the default outline */
    background-color: #fff; /* Changes background color when focused */
}

/* Styling for the label elements */
.rowtime label {
    width: 30%; /* Ensures labels take up a fixed portion of the row */
    text-align: left;
    font-size: 14px; /* Sets a consistent font size */
    margin-top: 5px; /* Adds a small margin for labels */
}


  .rowcombo {
    display: flex;              /* To fill the row, we use flexbox */
    justify-content: space-between; /* Ensures the elements inside are spaced out */
    align-items: center;        /* Centers content vertically */
    margin-bottom: 15px;        /* Adds space between rows */
}

.rowcombo label {
    width: 30%; /* Adjust label width as needed */
    text-align: left;
}

.rowcombo select {
    width: 65%; /* Makes the select box take up most of the row */
    padding: 5px; /* Adds some padding to make the select input look better */
    border-radius: 5px; /* Optional: adds rounded corners to the select input */
    border: 1px solid #ccc; /* Optional: adds a light border */
}

/* Ensures the option items inside the select box are styled appropriately */
.rowcombo select option {
    padding: 5px;
}

  label[name="hourheader"] {
    height: 100%;
    font-size: 14px;
    background: #75aa12;
    background: -webkit-linear-gradient(to right, #1b8604 , #75aa12); 
    background: linear-gradient(to right, #1b8604, #75aa12); 
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
  }

  label[name="checkboxheader2"] {
    height: 100%;
    font-size: 14px;
    background-color: #d32131;
    background-image: linear-gradient(to right, #fd7481 0%, #d32131 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
  }

  label[name="checkboxheader"] {
    height: 100%;
    font-size: 14px;
    background-color: #d32131;
    background-image: linear-gradient(to right, #fd7481 0%, #d32131 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
  }


  input[name="TimeFinish"] {
    height: 100%;
    width: 40%;
    outline: none;
    border-radius: 5px;
    border: 1px solid lightgrey;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  input[name="TimeStart"] {
    height: 100%;
    width: 40%;
    outline: none;
    border-radius: 5px;
    border: 1px solid lightgrey;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  input[name="date"] {
    height: 100%;
    width: 100%;
    outline: none;
    border-radius: 5px;
    border: 1px solid lightgrey;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  
  input[name="LimitCheck"] {
    height: 50%;
    width: 5%;
    outline: none;
    border-radius: 5px;
    border: 1px solid lightgrey;
    transition: all 0.3s ease;
  }

  input[name="checkbreak"] {
    height: 50%;
    width: 5%;
    outline: none;
    border-radius: 5px;
    border: 1px solid lightgrey;
    transition: all 0.3s ease;
  }

  .TimeReview {
    background-color: #ececec;
    background: -webkit-linear-gradient(to right, #fff , #ececec); 
    background: linear-gradient(to right, #fff, #ececec); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 4rem 0;
  }
  .TimeReview__container h1{
    font-size: 1.5rem;
    background-color: #d32131;
    background-image: linear-gradient(to right, #fd7481 0%, #d32131 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    margin-top: 40px;
  }

  .TimeReview__container {
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    margin: 20 auto;
  }

  .wrapperTimeReview {
    padding: 20px 20px;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 10px 1px rgba(0,0,0,0.1);
  }

  .content-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.60rem;
    width: 100%;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    table-layout: fixed;
}

.content-table thead tr {
    background-color: #8fcfff;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

.content-table th,
.content-table td {
    padding: 12px 15px;
}

.content-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.content-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.content-table tbody tr:last-of-type {
    border-bottom: 2px solid #8fcfff;
}

.content-table tbody tr.active-row {
    font-weight: bold;
    color: #8fcfff;
}

  .Schedule {
    background-color: #ececec;
    background: -webkit-linear-gradient(to right, #fff , #ececec); 
    background: linear-gradient(to right, #fff, #ececec); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 2rem 0;
  }
  .Schedule__container h1{
    font-size: 1.5rem;
    background-color: #d32131;
    background-image: linear-gradient(to right, #fd7481 0%, #d32131 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    margin-top: 40px;
  }

  .Schedule__container {
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    margin: 20 auto;
  }

  .wrapperSchedule {
    padding: 20px 20px;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 10px 1px rgba(0,0,0,0.1);
  }

  .ContactHR {
    background-color: #ececec;
    background: -webkit-linear-gradient(to right, #fff , #ececec); 
    background: linear-gradient(to right, #fff, #ececec); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 2rem 0;
  }
  .ContactHR__container h1{
    font-size: 1.5rem;
    background-color: #d32131;
    background-image: linear-gradient(to right, #fd7481 0%, #d32131 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    margin-top: 40px;
  }

  .ContactHR__container {
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    margin: 20 auto;
  }

  .wrapperContactHR {
    padding: 20px 20px;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 10px 1px rgba(0,0,0,0.1);
  }

  .chat-box{
    position: relative;
    min-height: 500px;
    max-height: 500px;
    overflow-y: auto;
    padding: 10px 30px 20px 30px;
    background: #f7f7f7;
    box-shadow: inset 0 32px 32px -32px rgb(0 0 0 / 5%),
                inset 0 -32px 32px -32px rgb(0 0 0 / 5%);
  }
  .chat-box .text{
    position: absolute;
    top: 45%;
    left: 50%;
    width: calc(100% - 50px);
    text-align: center;
    transform: translate(-50%, -50%);
  }
  .chat-box .chat{
    margin: 15px 0;
  }
  .chat-box .chat p{
    word-wrap: break-word;
    padding: 8px 16px;
    box-shadow: 0 0 32px rgb(0 0 0 / 8%),
                0rem 16px 16px -16px rgb(0 0 0 / 10%);
  }
  .chat-box .outgoing{
    display: flex;
  }
  .chat-box .outgoing .details{
    margin-left: auto;
    max-width: calc(100% - 130px);
  }
  .outgoing .details p{
    background: #333;
    color: #fff;
    border-radius: 18px 18px 0 18px;
  }
  .chat-box .incoming{
    display: flex;
    align-items: flex-end;
  }
  .chat-box .incoming img{
    height: 35px;
    width: 35px;
  }
  .chat-box .incoming .details{
    margin-right: auto;
    margin-left: 10px;
    max-width: calc(100% - 130px);
  }
  .incoming .details p{
    background: #fff;
    color: #333;
    border-radius: 18px 18px 18px 0;
  }
  .typing-area{
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
  }
  .typing-area input{
    height: 45px;
    width: calc(100% - 58px);
    font-size: 16px;
    padding: 0 13px;
    border: 1px solid #e6e6e6;
    outline: none;
    border-radius: 5px 0 0 5px;
  }
  .typing-area button{
    color: #fff;
    width: 55px;
    border: none;
    outline: none;
    background: #333;
    font-size: 19px;
    cursor: pointer;
    opacity: 0.7;
    border-radius: 0 5px 5px 0;
    transition: all 0.3s ease;
  }
  .typing-area button.active{
    opacity: 1;
    pointer-events: auto;
  }

  .FUcol {
    margin: 20px 10px;
    max-height: 90%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
    
    .FUcol button {
      font-size: 1Rem;
      background: #75aa12;
      background: -webkit-linear-gradient(to right, #fd7481, #8fcfff);
      background: linear-gradient(to right, #fd7481, #8fcfff);
      padding: 8px;
      width: 40%;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: all 0.35s;
      outline: none;
    }
    
    .FUcol button a {
      position: relative;
      z-index: 2;
      color: #fff;
      text-decoration: none;
    }
  
    .FUcol select{
      min-height: 34px;
      text-align: center;
      border-radius: 4px;
      border-color: #8fcfff;
      background-color: #f3f3f3;
    }