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

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


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

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


  .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;
}

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

/* Accordion Header */
.accordion-header-2 {
  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-2 {
  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-2 {
  display: block; /* Show plus by default */
  transition: display 0.5s ease;
}

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

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

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

/* Accordion Content */
.accordion-content-2 {
  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-2:checked + .accordion-content-wrapper-2 .accordion-content-2 {
  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: 10px !important; 
  font-family: 'Arial Rounded MT Bold', Arial, sans-serif !important;
}

.react-datepicker__header{
  background-color: #0a2419 !important;
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}

.react-datepicker__current-month {
  color: white !important;
  font-family: 'Arial Rounded MT Bold', Arial, sans-serif !important;
  font-weight: bold !important;
}

/* Style for day names (Mon, Tue, etc.) */
.react-datepicker__day-name {
  color: white !important;
  font-family: 'Arial Rounded MT Bold', Arial, sans-serif !important;
  font-weight: bold !important;
}

/* Style for weekday text */
.react-datepicker__day-names {
  color: white !important;
  font-family: 'Arial Rounded MT Bold', Arial, sans-serif !important;
}

/* Style for individual day numbers */
.react-datepicker__day {
  font-family: 'Arial Rounded MT Bold', Arial, sans-serif !important;
  font-weight: bold !important;
}

/* Style for navigation arrows */
.react-datepicker__navigation {
  font-family: 'Arial Rounded MT Bold', Arial, sans-serif !important;
  border-radius: 50% !important;
}

.react-datepicker__navigation--previous{
  margin-top: 15px;
}
.react-datepicker__navigation--next{
  margin-top: 12px;
}

/* Style for the arrow icons specifically */
.react-datepicker__navigation-icon::before {
  border-radius: 2px !important;
  border-color: #f9130d !important;
}

/* Style for the DatePicker input to match other inputs */
.react-datepicker__input-container input {
  width: 100% !important;
  padding: 10px !important;
  font-size: 16px !important;
  border: 1.5px solid white !important;
  outline: none !important;
  resize: none !important;
  background: #103928 !important;
  border-color: white !important;
  padding-left: 30px !important;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  color: white !important;
  border-radius: 8px !important;
}

/* Ensure the container takes full width */
.react-datepicker-wrapper {
  width: 100% !important;
}

.react-datepicker__input-container {
  width: 100% !important;
}

/* Style for the DatePicker icon */
.react-datepicker__calendar-icon {
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #f9130d!important;
  fill: #f9130d !important;
  z-index: 10 !important;
  pointer-events: none !important;
}

/* Style the SVG icon specifically */
.react-datepicker__calendar-icon svg {
  color: white !important;
  fill: white !important;
  width: 16px !important;
  height: 16px !important;
}

/* Make the calendar dropdown slightly larger */
.react-datepicker {
  border-radius: 10px !important; 
  font-family: 'Arial Rounded MT Bold', Arial, sans-serif !important;
}

/* Adjust the positioning */
.react-datepicker-popper {
  z-index: 9999 !important;
}

/* Make individual day cells slightly larger */
.react-datepicker__day {
  font-family: 'Arial Rounded MT Bold', Arial, sans-serif !important;
  font-weight: bold !important;
  width: 2.2rem !important;
  line-height: 2.2rem !important;
  margin: 0.15rem !important;
}

/* Make day name headers slightly larger */
.react-datepicker__day-name {
  color: white !important;
  font-family: 'Arial Rounded MT Bold', Arial, sans-serif !important;
  font-weight: bold !important;
  width: 2.2rem !important;
  line-height: 2.2rem !important;
  margin: 0.15rem !important;
}

/* Make the month/year header slightly larger */
.react-datepicker__current-month {
  color: white !important;
  font-family: 'Arial Rounded MT Bold', Arial, sans-serif !important;
  font-weight: bold !important;
  font-size: 1.1rem !important;
  padding: 0.6rem !important;
}

.react-datepicker{
  border-radius: 10px !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) - green background */
    linear-gradient(to bottom, #f9130d, #f9130d) padding-box,
    /* Second layer (border only) - shades of green 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;
  }
}

