input, textarea, select {
    background-color: white; /* White input background */
    color: black; /* Black text for inputs */
    border: 1px solid #ccc; /* Light gray border for inputs */
}

input::placeholder, textarea::placeholder {
    color: #666; /* Placeholder text color */
}

.slider-container {
    max-width: 300px;
    margin: 20px 0;
    padding: 0; /* Ensure no padding */
}

.slider-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)); /* Subtle gradient */
    border: 1px solid currentColor; /* Match outline with text color */
    height: 50px;
    border-radius: 15px;
    position: relative;
}

.slider-handle {
    position: absolute;
    width: calc(60px - 12px); /* 6px padding on each side */
    height: calc(50px - 12px); /* 6px padding on top/bottom */
    background: linear-gradient(to top, rgba(200, 200, 200, 0.2), rgba(255, 255, 255, 0.5)); /* Simple gradient: light gray to white */
    border: 1px solid rgba(150, 150, 150, 0.6); /* Default gray border */
    top: 6px; /* Padding for top/bottom */
    left: 6px; /* Padding for left/right */
    border-radius: 10px;
    cursor: pointer;
    transition: left 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.slider-handle.active {
    border-color: green; /* Green border for correct position */
}

.slider-handle.error {
    border-color: gray; /* Gray border for incorrect position */
}

.drop-zone {
    flex: 1;
    text-align: center;
    font-size: .9em; /* Font size set to .9em */
    font-weight: normal; /* No bold */
    line-height: 50px;
    border-right: 1px solid rgba(200, 200, 200, 0.3); /* Light subtle separation */
    color: currentColor;
}

.drop-zone:last-child {
    border-right: none;
}

/* Parking spot with vertical border between it and zone 1 */
.drop-zone.parking {
    background: rgba(255, 255, 255, 0.1); /* Very light background */
    border-right: 1px solid rgba(200, 200, 200, 0.3); /* Add border like other zones */
}

.error-message {
    font-weight: bold; /* Bold text for emphasis */
    margin-top: 10px;
    letter-spacing: 0.5px; /* Slight letter spacing */
}

/* Styling for the button */
button {
    visibility: visible;
    font-size: 1.15em;
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
	color: #000000; 
}

button:hover {
    background-color: #e0e0e0; /* Lighter background on hover */
}

button .plane-icon {
    margin-left: 8px; /* Space between text and icon */
    transition: transform 0.5s ease; /* Smooth transition for spin effect */
    height: 1em;
}

button:hover .plane-icon, button:focus .plane-icon {
    transform: rotate(360deg); /* Spin animation */
}

/* Hidden screen reader text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Hidden by default */
.hidden {
    display: none;
}
