/* BitBeam Booking Widget — public-facing */

.bb-booking-widget {
    max-width: 600px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.bb-booking-header h3 {
    margin: 0 0 4px;
    font-size: 1.4em;
    color: #111827;
}
.bb-booking-header p {
    margin: 0 0 24px;
    color: #6b7280;
    font-size: .95em;
}
.bb-booking-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
    font-size: .9em;
}
.bb-booking-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color .2s;
    box-sizing: border-box;
}
.bb-booking-input:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}
textarea.bb-booking-input { min-height: 80px; resize: vertical; }
.bb-booking-form-field { margin-bottom: 12px; }
.bb-booking-slots {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
}
.bb-booking-slot {
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-size: .9em;
    transition: all .2s;
    background: #fff;
}
.bb-booking-slot:hover:not(.disabled) {
    border-color: #2563eb;
    background: #eff6ff;
}
.bb-booking-slot.selected {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}
.bb-booking-slot.disabled {
    opacity: .4;
    cursor: not-allowed;
    text-decoration: line-through;
}
.bb-booking-selected-slot {
    background: #eff6ff;
    border-radius: 8px;
    padding: 10px 14px;
    margin: 12px 0;
    font-size: .9em;
    color: #1e40af;
}
.bb-booking-submit {
    display: block;
    width: 100%;
    padding: 14px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.05em;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}
.bb-booking-submit:hover { background: #1e40af; }
.bb-booking-submit:disabled { opacity: .6; cursor: not-allowed; }
.bb-booking-success {
    text-align: center;
    padding: 20px 0;
}
.bb-booking-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #d1fae5;
    color: #065f46;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    margin: 0 auto 16px;
}
.bb-booking-success h3 { color: #065f46; margin: 0 0 8px; }
.bb-booking-success p { color: #6b7280; }
.bb-booking-error {
    background: #fee2e2;
    color: #991b1b;
    border-radius: 8px;
    padding: 12px;
    margin-top: 12px;
    font-size: .9em;
}
