.mksaa-booking-wrapper {
	max-width: 520px;
	margin: 30px auto;
	background: #ffffff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	border: 1px solid #e2e8f0;
	box-sizing: border-box;
	font-family: inherit;
}

.mksaa-heading {
	margin: 0 0 20px 0;
	font-size: 1.3rem;
	font-weight: 700;
	color: #1e293b;
	border-bottom: 2px solid #f1f5f9;
	padding-bottom: 12px;
}

.mksaa-form-group {
	margin-bottom: 18px;
}

.mksaa-form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 0.9rem;
	color: #475569;
}

.mksaa-input {
	width: 100% !important;
	height: 44px;
	padding: 8px 12px !important;
	border: 1px solid #cbd5e1 !important;
	border-radius: 6px !important;
	font-size: 0.95rem !important;
	box-sizing: border-box !important;
	background: #ffffff !important;
	color: #1e293b !important;
}

.mksaa-input:focus {
	border-color: #0284c7 !important;
	outline: 2px solid #e0f2fe;
}

.mksaa-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
    gap: 10px;
    margin-top: 15px;
}


.mksaa-slot-btn {
    padding: 10px 8px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s ease-in-out;
}

.mksaa-slot-btn:hover {
    background: #0284c7;
    color: #ffffff;
    border-color: #0284c7;
}

.mksaa-btn {
	display: block;
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	text-align: center;
	box-sizing: border-box;
	transition: background 0.2s ease;
}

.mksaa-btn-primary {
	background: #0284c7;
	color: #ffffff;
}

.mksaa-btn-primary:hover {
	background: #0369a1;
}

.mksaa-btn-secondary {
	background: #f1f5f9;
	color: #475569;
}

.mksaa-btn-secondary:hover {
	background: #e2e8f0;
}

/* Ensure the intl-tel-input container fills the width properly */
.iti {
    width: 100%;
    display: block;
    position: relative;
}

/* Add left clearance so the typed digits do not collide with the flag/code */
.iti input#mksaa-customer-phone,
.iti input[type="tel"] {
    width: 100% !important;
    padding-left: 85px !important;
    box-sizing: border-box !important;
}

/* Vertically center and align the flag dropdown */
.iti__country-container {
    padding: 0 8px;
    z-index: 2;
}


.mksaa-chip {
    margin-top: 8px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.mksaa-chip-info { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.mksaa-chip-warning { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.mksaa-chip-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }


.mksaa-extras-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.mksaa-extra-card {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.mksaa-extra-card:hover {
    border-color: #0284c7;
    background: #f0f9ff;
}

.mksaa-extra-checkbox {
    margin-right: 12px !important;
    width: 17px !important;
    height: 17px !important;
    accent-color: #0284c7;
}

.mksaa-extra-title {
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
    flex: 1;
}

.mksaa-extra-tag {
    font-size: 12px;
    font-weight: 700;
    color: #0284c7;
    background: #e0f2fe;
    padding: 3px 8px;
    border-radius: 4px;
}