/* Access Options Styling */
.access-options {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.access-options input[type="radio"] {
    width: auto;
    margin-right: 8px;
}

.access-options label {
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.floors-section {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e1e5e9;
    margin-top: 10px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        max-height: 200px;
        transform: translateY(0);
    }
}

.floors-section label {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.floors-section input[type="number"] {
    width: 100px;
    padding: 8px 12px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 12px;
}

.floors-section input[type="number"]:focus {
    outline: none;
    border-color: #ff8d00;
    box-shadow: 0 0 0 2px rgba(255, 141, 0, 0.1);
}

.lift-option {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
}

.lift-option input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #ff8d00;
}

.lift-option label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
    color: #555;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .access-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .floors-section {
        padding: 12px;
    }
    
    .lift-option {
        padding: 8px;
    }
}

/* Enhanced radio button styling */
.access-options input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.access-options input[type="radio"]:checked {
    border-color: #ff8d00;
    background-color: #ff8d00;
}

.access-options input[type="radio"]:checked::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.access-options input[type="radio"]:hover {
    border-color: #ff8d00;
}
