#smt-booking {
    max-width: 640px;
    margin: 0 auto;
}

.smt-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.smt-field {
    display: flex;
    flex-direction: column;
}

.smt-field-full {
    grid-column: 1 / -1;
}

.smt-field label {
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

.smt-required {
    color: #b91c1c;
}

#smt-form input,
#smt-form select,
#smt-form textarea,
#smt-form button {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.4;
    box-sizing: border-box;
}

#smt-form textarea {
    resize: vertical;
    min-height: 110px;
}

#smt-form input:focus,
#smt-form select:focus,
#smt-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

#smt-form button {
    background: #111827;
    color: #fff;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

#smt-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#smt-message {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
}

.smt-success {
    background: #ecfdf5;
    color: #166534;
}

.smt-error {
    background: #fef2f2;
    color: #991b1b;
}

.smt-info {
    background: #eff6ff;
    color: #1d4ed8;
}

#smt-alternates {
    margin-top: 12px;
}

.smt-alt-times {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.smt-alt-time {
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #111827;
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    width: auto !important;
}

.smt-alt-time:hover {
    background: #f3f4f6;
}

.smt-honeypot {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.flatpickr-input[readonly] {
    background: #fff;
    cursor: pointer;
}

@media (max-width: 640px) {
    .smt-grid {
        grid-template-columns: 1fr;
    }
}