.wtw-booking-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fdfdfd;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
}

.wtw-form-group {
    margin-bottom: 1.5rem;
}

.wtw-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.wtw-form-group input[type="text"],
.wtw-form-group input[type="email"],
.wtw-form-group input[type="tel"],
.wtw-form-group input[type="date"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

/* Fix for intl-tel-input width */
.iti {
    width: 100%;
    display: block !important;
}

.iti__flag-container {
    z-index: 10;
}

.wtw-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
}

.wtw-slot-btn {
    padding: 0.5rem;
    background: #fff;
    border: 2px solid #0073aa;
    color: #0073aa;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
    text-align: center;
}

.wtw-slot-btn:hover {
    background: #e6f1f8;
}

.wtw-slot-btn.wtw-selected {
    background: #0073aa;
    color: #fff;
}

.wtw-slot-btn.wtw-disabled {
    opacity: 0.5;
    background: #f1f1f1;
    border-color: #ddd;
    color: #999;
    cursor: not-allowed;
}

.wtw-slot-btn.wtw-disabled:hover {
    background: #f1f1f1;
}

.wtw-btn-submit {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.wtw-btn-submit:hover {
    background: #005177;
}