#kba-booking-modal.kba-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 14, 18, 0.72);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(6px);
}

#kba-booking-modal .kba-modal-content {
    position: relative;
    width: min(100%, 460px);
    max-height: min(90vh, 760px);
    overflow-y: auto;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

#kba-booking-modal .kba-modal-close {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: #f1f3f5;
    color: #222;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

#kba-booking-modal .kba-modal-title {
    margin: 0 42px 6px 0;
    font-size: 24px;
    line-height: 1.15;
    color: #111827;
}

#kba-booking-modal .kba-modal-subtitle {
    margin: 0 0 22px;
    color: #6b7280;
    font-size: 14px;
}

#kba-booking-modal .kba-input-group {
    margin-bottom: 18px;
}

#kba-booking-modal .kba-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #111827;
}

#kba-booking-modal .kba-input-group input[type="text"] {
    width: 100%;
    min-height: 48px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 12px 14px;
    background: #fff;
    font-size: 15px;
    color: #111827;
    cursor: pointer;
}

#kba-booking-modal .kba-input-group input[type="text"]:focus {
    outline: none;
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.12);
}

#kba-booking-modal .kba-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 4px;
}

#kba-booking-modal .kba-slot-label {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    border: 1px solid #d6d8de;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

#kba-booking-modal .kba-slot-label:hover {
    transform: translateY(-1px);
    border-color: #111827;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

#kba-booking-modal .kba-slot-label.is-booked {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f3f4f6;
}

#kba-booking-modal .kba-slot-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#kba-booking-modal .kba-slot-details {
    width: 100%;
    padding: 12px 10px;
    text-align: center;
}

#kba-booking-modal .kba-slot-label.is-selected {
    background: #111827;
    color: #fff;
    border-color: #111827;
}

#kba-booking-modal .kba-slot-label.is-selected .kba-slot-meta,
#kba-booking-modal .kba-slot-label.is-selected .kba-slot-status {
    color: rgba(255, 255, 255, 0.82);
}

#kba-booking-modal .kba-slot-time {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

#kba-booking-modal .kba-slot-meta {
    font-size: 12px;
    color: #6b7280;
}

#kba-booking-modal .kba-slot-status {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #dc2626;
}

#kba-booking-modal .kba-confirm-btn {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 14px;
    background: #111827;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-transform: uppercase;
}

#kba-booking-modal .kba-confirm-btn:hover {
    background: #1f2937;
}

#kba-booking-modal .kba-loading-state {
    padding: 14px 0;
    text-align: center;
    color: #6b7280;
    font-style: italic;
}

.kba-booking-trigger.consultaion-booking {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid #A1A1A1;
    background: transparent !important;
    color: #2E2D2D;
    font-weight: 400;
    overflow: hidden;
    cursor: pointer;
    font-family: "DM Sans";
    font-size: 16px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.consultaion-booking::before {
    content: '';
	position: absolute;
	left: -100%;
	top: 0;
	height: 100%;
	width: 100%;
	transition: all 0.5s;
	background: #2E2D2D;
	z-index: -1;
}
.consultaion-booking:hover::before {
    left: 0;
}
@media (max-width: 640px) {
    #kba-booking-modal .kba-modal-content {
        padding: 22px;
        border-radius: 18px;
    }

    #kba-booking-modal .kba-slots-grid {
        grid-template-columns: 1fr;
    }

    #kba-booking-modal .kba-modal-title {
        font-size: 21px;
    }
}
