body { background: #f6f7fb; }
.card { border: 0; border-radius: 14px; }
.table th, .table td { vertical-align: middle; }


.dashboard-card p{min-height:48px}
.booking-ui-page {
    min-height: 100vh;
    background: #f3f4f6;
    padding: 24px;
}
.booking-ui-wrap {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}
.booking-ui-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    display: grid;
    grid-template-columns: 420px 1fr;
    min-height: 700px;
}
.booking-ui-left {
    padding: 40px 36px;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fafafa;
}
.booking-ui-right {
    padding: 40px 42px;
}
.booking-brand-title {
    font-size: 18px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
}
.booking-main-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    color: #002b5b;
    margin: 0 0 28px;
}
.booking-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 10px;
}
.booking-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #475569;
    font-size: 26px;
    font-weight: 600;
}
.booking-info-icon {
    width: 38px;
    height: 38px;
    border: 2px solid #9ca3af;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #6b7280;
    flex-shrink: 0;
}
.booking-footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.booking-footer-links a {
    text-decoration: none;
    color: #1456c3;
    font-size: 15px;
    font-weight: 500;
}
.booking-ui-right h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 28px;
    color: #002b5b;
}
.form-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.form-group-modern.full {
    grid-column: 1 / -1;
}
.form-grid-modern label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
}
.form-grid-modern input,
.form-grid-modern select,
.form-grid-modern textarea {
    width: 100%;
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    color: #0f172a;
    background: #fff;
    outline: none;
    transition: all 0.2s ease;
}
.form-grid-modern input:focus,
.form-grid-modern select:focus,
.form-grid-modern textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59,130,246,.12);
}
.form-grid-modern textarea {
    min-height: 110px;
    resize: vertical;
}
.booking-btn-row {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.booking-pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 14px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: .2s ease;
}
.booking-pill-primary {
    background: #e8f0fe;
    color: #1456c3;
}
.booking-pill-secondary {
    background: #fff;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}
.booking-note-box {
    margin-top: 28px;
    padding: 18px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}
@media (max-width: 980px) {
    .booking-ui-card { grid-template-columns: 1fr; }
    .booking-ui-left { border-right: none; border-bottom: 1px solid #e5e7eb; }
}
@media (max-width: 640px) {
    .booking-ui-page { padding: 14px; }
    .booking-ui-left, .booking-ui-right { padding: 24px 20px; }
    .booking-main-title { font-size: 36px; }
    .form-grid-modern { grid-template-columns: 1fr; }
    .booking-pill-btn { width: 100%; }
}
