/* LetGo Plugin Frontend Styles */

.letgo-booking-form {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 2rem;
    position: relative;
    z-index: 1;
}

.step.active {
    border-color: #00C4CC;
    background: #e6f9fa;
    color: #00C4CC;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .booking-steps {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .booking-steps::before {
        display: none;
    }
}
