/* K-STYLE Booking Public Styles */

.kstyle-booking-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.button:hover {
    background: #c0392b;
    color: white;
}

.button-primary {
    background: #27ae60;
}

.button-primary:hover {
    background: #229954;
}

.button-large {
    padding: 15px 30px;
    font-size: 16px;
}

.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .kstyle-activities-grid {
        grid-template-columns: 1fr;
    }
    
    .sessions-grid {
        grid-template-columns: 1fr;
    }
    
    .date-range-selector {
        flex-direction: column;
        align-items: stretch;
    }
    
    .date-range-selector label {
        width: 100%;
    }
    
    .date-range-selector input {
        width: 100%;
    }
}
