.consultation-notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.consultation-toast {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    animation: consultation-toast-slide-in 0.3s ease-out;
    max-width: 100%;
    color: #fff;
}

.consultation-toast--success {
    background: #28a745;
}

.consultation-toast--error {
    background: #dc3545;
}

.consultation-toast__icon {
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.consultation-toast__message {
    flex: 1;
    min-width: 0;
}

.consultation-toast__dismiss {
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@keyframes consultation-toast-slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.consultation-booking-form {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    overflow: visible !important;
    min-height: 0;
    contain: none;
}

.consultation-booking-form *,
.consultation-booking-form *::before,
.consultation-booking-form *::after {
    box-sizing: border-box;
}

.consultation-booking-form .row {
    overflow: visible;
}

.consultation-pill-wrap {
    margin-bottom: 1rem;
}

.consultation-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 16px -12px rgba(15, 23, 42, 0.24);
    color: #334155;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.consultation-pill__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex: 0 0 9px;
    background: #3b82f6;
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.45);
    animation: consultation-pill-dot-pulse 2s ease-out infinite;
}

.consultation-pill__label {
    display: inline-block;
}

@keyframes consultation-pill-dot-pulse {
    0% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.45);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
    }
    100% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.consultation-title {
    color: var(--bs-body-color, #2c3e50);
    font-weight: 700;
}

.consultation-subtitle-wrap {
    max-width: 40rem;
    padding: 0 0.75rem;
    margin-bottom: 3rem;
}

@media (max-width: 767.98px) {
    .consultation-subtitle-wrap {
        margin-bottom: 2.25rem;
    }
}

.consultation-subtitle {
    color: var(--bs-secondary-color, #3c3c43);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
}

html[data-theme="dark"] .consultation-title {
    color: #e2e8f0;
}

html[data-theme="dark"] .consultation-subtitle {
    color: #94a3b8;
}

html[data-theme="dark"] .consultation-pill {
    color: #e2e8f0;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-color: #334155;
    box-shadow: 0 6px 16px -12px rgba(0, 0, 0, 0.45);
}

html[data-theme="dark"] .consultation-pill__dot {
    background: #60a5fa;
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.45);
    animation: consultation-pill-dot-pulse-dark 2s ease-out infinite;
}

@keyframes consultation-pill-dot-pulse-dark {
    0% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.45);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(96, 165, 250, 0);
    }
    100% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(96, 165, 250, 0);
    }
}

.consultation-booking-form .form-label {
    font-weight: 600;
    margin-bottom: 8px;
}

.consultation-booking-form .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    min-height: 46px;
    line-height: 1.5;
}

.consultation-booking-form select.form-control {
    min-height: 46px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.consultation-booking-form textarea.form-control {
    min-height: 0;
}

.consultation-booking-form .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
    outline: none;
}

.consultation-booking-form .form-control::placeholder {
    color: #9ca3af;
}

.consultation-booking-form .btn-primary {
    background: var(--consultation-button-color, #007bff) !important;
    border: 1px solid var(--consultation-button-color, #007bff) !important;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #fff !important;
}

.consultation-booking-form .btn-primary:hover {
    background: var(--consultation-button-color, #007bff) !important;
    border-color: var(--consultation-button-color, #007bff) !important;
    filter: brightness(0.92);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.consultation-booking-form .btn-primary:disabled {
    transform: none;
    box-shadow: none;
    opacity: 0.7;
}

html[data-theme="dark"] .consultation-booking-form .form-control {
    background: #374151;
    border: 1px solid #4b5563;
    color: #e2e8f0;
}

html[data-theme="dark"] .consultation-booking-form .form-label {
    color: #e2e8f0;
}

html[data-theme="dark"] .consultation-booking-form select option {
    background: #374151;
    color: #e2e8f0;
}

html[data-theme="dark"] .consultation-booking-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}
