/* Custom Red Dropdown Arrow */
      select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A1A1A1' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        background-size: 16px;
      }

      /* Calendar Icon for Date Inputs */
      input[type="checkbox"] {
        appearance: none;
        width: 18px;
        height: 18px;
        border: 2px solid #a1a1a1;
        border-radius: 2px;
        background: transparent;
      }
      input[type="checkbox"]:checked {
        background: #D31927;
        border-color: #D31927;
        position: relative;
      }
      input[type="checkbox"]:checked::after {
        content: "✓";
        color: black;
        font-weight: bold;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 14px;
      }
      .upload-box {
  @apply block border border-[#333333] rounded-xl p-6 text-center cursor-pointer transition;
}
.upload-box:hover {
  @apply border-[#D31927];
}
.plus-circle {
  @apply mx-auto w-12 h-12 bg-[#1a1a1a] rounded-full flex items-center justify-center mb-3 text-white text-2xl transition group-hover:bg-[#FF0038];
}
.preview-area {
  @apply relative overflow-hidden rounded-lg bg-[#0f0f0f] h-48 flex items-center justify-center;
}
.preview-area img {
  @apply max-w-full max-h-full object-contain rounded-lg;
}
.default-content {
  @apply pointer-events-none;
}
.preview-container {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.preview-container img {
  max-width: 100%;
  max-height: 180px;
  border-radius: 8px;
  margin-top: 12px;
}
.preview-container .success-check {
  color: #10b981;
  font-size: 48px;
  margin-bottom: 12px;
}
input[type="radio"]:checked::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
input[type="time"] {
    color: #A1A1A1;
}

input[type="time"]::-webkit-calendar-picker-indicator {
filter: invert(65%) sepia(0%) saturate(20%) hue-rotate(240deg) brightness(97%) contrast(85%); 
    opacity: 1; 
    display: block;
}
input[type="time"]::-webkit-datetime-edit {
    color: #A1A1A1;
}
input[type="date"] {
    color: #A1A1A1;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(65%) sepia(0%) saturate(20%) hue-rotate(240deg) brightness(97%) contrast(85%);
        opacity: 1; 
    display: block;
}

input[type="date"]::-webkit-datetime-edit {
    color: #A1A1A1;
}
select option {
    background: #0A0A0A;
        color: #FAFAFA; 
}

button.toggleSection,
	[type="button"].toggleSection,
	[type="submit"].toggleSection {
		background-color: transparent !important;
		border-bottom: 1px solid #333333 !important;
		border-top: none !important;
		border-left: none !important;
		border-right: none !important;
		margin-bottom: 20px !important;
	}
a {
		text-decoration: none !important;
	}

html:not(.dark) div.calendar-icon {
    display: none !important;
}

html:not(.dark) span.required-asterik {
	color: #ff0037 !important
}
select#rental-type option[disabled][selected] {
  background-color: #A0A0A0 !important;     /* Dark gray – matches dark theme */
  color: #888888 !important;                /* Slightly lighter gray for placeholder feel */
}