.smart-booking-template-preview {
    margin-top: 16px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: #f8f9fb;
}

.smart-booking-template-preview .smart-booking-template-preview-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #1f2933;
}

.smart-booking-template-preview .smart-booking-template-preview-item:last-child {
    margin-bottom: 0;
}

.smart-booking-template-preview .smart-booking-template-preview-icon {
    width: 20px;
    display: inline-flex;
    justify-content: center;
    color: #6b7280;
    flex-shrink: 0;
    margin-top: 2px;
}

.smart-booking-template-preview .smart-booking-template-preview-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.smart-booking-template-preview .smart-booking-template-preview-type {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
}

/* Fix overly wide editor modal */
#edit-template-modal .modal-content {
    width: min(900px, 92vw);
    margin: 1.75rem auto;
}

#edit-template-modal .modal-body {
    padding: 2rem;
}


:root[data-theme="dark"] .smart-booking-template-preview {
    background: rgba(11, 28, 56, 0.68);
    border-color: rgba(100, 177, 243, 0.3);
}

:root[data-theme="dark"] .smart-booking-template-preview .smart-booking-template-preview-item {
    color: #e7f2ff;
}

:root[data-theme="dark"] .smart-booking-template-preview .smart-booking-template-preview-icon,
:root[data-theme="dark"] .smart-booking-template-preview .smart-booking-template-preview-type {
    color: rgba(214, 234, 255, 0.74);
}

:root[data-theme="dark"] #edit-template-modal .modal-content {
    background: rgba(13, 31, 62, 0.9);
    border: 1px solid rgba(102, 179, 245, 0.3);
}

