body {
    font-family: 'Nunito', Arial, sans-serif;
    font-weight: 700;
    background-color: #0b1e1c;
    color: white;
    margin: 0;
    padding: 0;
  }

  #container {
    width: 100%;
  }

  .tab {
    display: flex;
    overflow: hidden;
    background-color: #028150;
  }

  .tab button {
    background-color: inherit;
    font-size: 15px;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    color: white;
    flex: 1;
    text-align: center;
  }

  .tab button,
  .tablinks {
    font-family: 'Nunito', Arial, sans-serif;
    font-weight: 700;
  }

  .tab button.active {
    background-color: white;
    color: #028150;
  }

  .tabcontent {
    display: none;
    margin: auto;
    margin-top: 180px;
    background-color: #123f3a;
    border-radius: 10px;
    min-height: 150px;
    width: 90%;
    max-width: 400px;
    position: relative;
  }

  .tabcontent-header {
    border-radius: 10px;
    background-color: #028150;
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .datepicker-container {
    position: absolute;
    left: 10px;
    display: flex;
    align-items: center;
  }

  .tabcontent-header .tabtitle {
    font-size: 15px;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 32px;
    margin-left: 20px;
  }

  .tabcontent-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
  }

  .datepicker-container img {
    cursor: pointer;
    width: 32px;
    height: auto;
  }

  .datepicker_input {
    display: none;
    /* Ensure the input is not visible */
  }

  .flatpickr-calendar {
    top: 30px !important;
    /* Move the calendar 2px down */
  }

  .flatpickr-calendar .flatpickr-day.selected {
    background: #028150 !important;
    /* Replace with your desired green color */
    color: white;
    /* Adjust text color if needed */
    border-color: #028150;
  }

  .flatpickr-calendar .flatpickr-day.selected:hover {
    border-color: #028150;
  }

  .flatpickr-calendar .flatpickr-day:hover {
    border-color: #028150;
    background-color: #02815029;
    border-width: 2px;
  }

  .flatpickr-monthSelect-month {
    background: none;
    border-radius: 5px;
    color: #333;
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    text-align: center;
    width: 33.33%;
  }

  .flatpickr-monthSelect-month.selected {
    background: #028150 !important;
    color: white !important;
  }

  .flatpickr-monthSelect-month:hover {
    background: #02815029;
    border-color: #028150;
  }

  .flatpickr-monthSelect-theme {
    background: white;
    border-radius: 5px;
    border: 1px solid #028150;
  }

  .flatpickr-monthSelect-month.today {
    border-color: #028150;
  }

  .language-buttons {
    display: flex;
    margin-top: 12px;
    font-family: 'Nunito', Arial, sans-serif;
    flex-wrap: nowrap;
    gap: 32px;
  }

  .language-buttons button {
    display: flex;
    font-family: 'Nunito', Arial, sans-serif;
    background-color: #028150;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    outline: none;
    min-width: 120px;
    flex: 0 1 auto;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .language-buttons button:hover {
    background-color: #033;
  }

  .button-icon {
    width: 16px;
    height: auto;
  }

  #snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: white;
    color: red;
    text-align: center;
    border-radius: 10px;
    padding: 12px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 15px;
  }

  #snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }

  @-webkit-keyframes fadein {
    from {
      bottom: 0;
      opacity: 0;
    }

    to {
      bottom: 30px;
      opacity: 1;
    }
  }

  @keyframes fadein {
    from {
      bottom: 0;
      opacity: 0;
    }

    to {
      bottom: 30px;
      opacity: 1;
    }
  }

  @-webkit-keyframes fadeout {
    from {
      bottom: 30px;
      opacity: 1;
    }

    to {
      bottom: 0;
      opacity: 0;
    }
  }

  @keyframes fadeout {
    from {
      bottom: 30px;
      opacity: 1;
    }

    to {
      bottom: 0;
      opacity: 0;
    }
  }

  .options-area {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
  }



  .toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
    position: relative;
    justify-content: right;
  }

  .switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
  }

  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #028150;
    transition: .4s;
    outline: 2px solid white;
  }

  .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 6px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
  }

  input:checked+.slider {
    background-color: #028150;
  }

  input:focus+.slider {
    box-shadow: 0 0 1px #028150;
  }

  input:checked+.slider:before {
    transform: translateX(18px);
  }

  .slider.round {
    border-radius: 34px;
  }

  .slider.round:before {
    border-radius: 50%;
  }

  .toggle-labels {
    font-size: 14px;
    min-width: 60px;
    text-align: right;
  }

  .toggle-labels span {
    opacity: 0.5;
  }

  .toggle-labels span.active {
    opacity: 1;
  }

  .custom-select-wrapper {
    position: relative;
    width: 120px;
    margin-left: 20px;
    font-family: 'Nunito', sans-serif;
  }

  .custom-select {
    position: relative;
    cursor: pointer;
  }

  .custom-select-trigger {
    background-color: #028150;
    color: white;
    padding: 4px 12px;
    border: 2px solid white;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
  }

  .arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
    transition: transform 0.3s ease;
  }

  .custom-select.open .arrow {
    transform: rotate(-180deg);
  }

  .custom-options {
   display: none;
   position: absolute;
   top: calc(100% + 6px);
   left: 0;
   right: 0;
   background-color: #028150;
   border: 2px solid white;
   border-radius: 8px;
   z-index: 2;
   -webkit-background-clip: padding-box;
   background-clip: padding-box;
   overflow: hidden;
  }

  .custom-select.open .custom-options {
    display: block;
  }

  .custom-option {
    padding: 8px 12px;
    color: white;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 180ms ease, color 180ms ease;
  }

  .custom-option.selected {
    background-color: #123f3a;
  }

  .custom-option:hover {
    background-color: #007749ff;
  }

  .custom-option.selected:hover {
    background-color: #123f3acc;
  }