.toggle-group {
    display: flex;
    margin-bottom: 20px;
    width: 215px;
    height: 38px;
    background-color: #103928;
    padding: 2px;
    justify-content: center;
  }
  
  .toggle-button {
    background-color: #103928;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-content: center;
    align-items: center;
    width: 110px;
    font-size: 13px;
    font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
  }

  .toggle-button.active {
    background-color: #f9130d;
    color: white;
    border-color: #f9130d;
  }


  .relative {
    position: relative;
  }
  
  .floating-textarea {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border: 1.5px solid #103928;
    outline: none;
    resize: none;
    background: transparent;
    border-color: #103928;
    padding-left: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .floating-textarea-2{
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border: 1px solid;
    outline: none;
    resize: none;
    background: transparent;
    border-color: black;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  

  .floating-label {
    position: absolute;
    top: 0px;
    left: 20px;
    font-size: 14px;
    padding-left: 2px;
    padding-right: 2px;
    color: black;
    background-color: white;
  }


  .location-icon {
    position: absolute;
    left: 10px;
    font-size: 16px;
    color: #888;
  }

  .input-container {
    position: relative;
    display: flex;
    align-items: center;
  }

  .input-container-2 {
    position: relative;
    display: flex;
    align-items: center;
    width: 88%;;
  }

  @media (max-width: 768px) {
  
    .input-container-2 {
      width: 95%; /* Full width for mobile screens */
    }
  }

  .accordion-content {
    transition: all 0.3s ease-in-out;
  }
  /* Debug styles to show when checked */
input[type="checkbox"]:checked + label .minus-icon {
  display: block;
}

input[type="checkbox"]:not(:checked) + label .plus-icon {
  display: block;
}



/* Accordion Item */
.accordion-item {
  border-bottom: 1px solid; /* Tailwind equivalent of border-b-2 */
  border-color: black;
  padding: 16px;
}

/* Accordion Header */
.accordion-header {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.25rem; /* Tailwind equivalent of text-lg */
  width: 100%;
  user-select: none;
}

/* Accordion Icon */
.accordion-icon {
  font-size: 1.5rem; /* Tailwind equivalent of text-2xl */
  padding-right: 8px; /* Tailwind equivalent of pr-2 */
  transition: opacity 0.3s ease;
}

/* Plus Icon */
.plus {
  display: block; /* Show plus by default */
  transition: display 0.5s ease;
}

/* Minus Icon */
.minus {
  display: none; /* Hide minus by default */
  transition: display 0.5s ease;
}

/* Show Minus when checked */
.accordion-toggle:checked + .accordion-content-wrapper .minus {
  display: block; /* Show minus */
}

/* Show Plus when checked */
.accordion-toggle:checked + .accordion-content-wrapper .plus {
  display: none; /* Hide plus */
}

/* Accordion Content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  font-size: 1rem; /* Tailwind equivalent of text-lg */
  padding-left: 16px; /* Tailwind equivalent of pl-4 */
  opacity: 0;
  transition: all 0.5s ease-in-out;
  cursor: pointer; /* Make the content clickable */
}

/* Show content when the checkbox is checked */
.accordion-toggle:checked + .accordion-content-wrapper .accordion-content {
  max-height: 1000px; /* A large value to accommodate content of any size */
  margin-top: 8px; /* Tailwind equivalent of mt-2 */
  opacity: 1;
  transition: all 0.7s ease-in-out;
}

@media (max-width: 768px) {
  .accordion-header{
    font-size: 1rem; /* Tailwind equivalent of text-xl */
  }
  .accordion-content {
    font-size: 0.875rem; /* Tailwind equivalent of text-sm */
  }
}

.custom-shadow-primary {
  box-shadow: #103928 10px 10px;
}

.custom-shadow-white {
  box-shadow: #fff 10px 10px;
}

.react-datepicker__day--selected {
  background-color: #f9130d !important; /* Green background */
  color: white !important; /* White text */

}

/* Optional: Change hover effect for the selected date */
.react-datepicker__day--selected:hover {
  background-color: #f9130d !important; /* Darker green on hover */
}

.react-datepicker {
  border-radius: 0px !important; 
}

.react-datepicker__header{
  background-color: #103928 !important;
  
}

.react-datepicker__current-month {
  color: white !important;
}

/* Style for day names (Mon, Tue, etc.) */
.react-datepicker__day-name {
  color: white !important;
}

/* Style for weekday text */
.react-datepicker__day-names {
  color: white !important;
}


/* Rainbow Border Button CSS */

/* Register the --bg-angle as an animatable property */
@property --bg-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* The button with red background and rainbow border */
.rainbow-button {
  /* Basic button styling */
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 0; 
  color: white; 
  
  /* Rainbow border setup */
  border: 4px solid transparent; /* Transparent border that will show the gradient */
  
  /* Background setup with two layers */
  background: 
    /* First layer (inside content) - red background */
    linear-gradient(to bottom, #f9130d, #f9130d) padding-box,
    /* Second layer (border only) - rainbow gradient that will animate */
    conic-gradient(
      from var(--bg-angle),
      #ff0000, #ffa500, #ffff00, #00ff00, #0000ff, #4b0082, #8a2be2, #ff0000
    ) border-box;
  
  /* Animation for the border */
  animation: spin 4s linear infinite;
}

/* Keyframes for the spinning animation */
@keyframes spin {
  to {
    --bg-angle: 360deg;
  }
}

