/* =========================================================
   Reztoran Admin · Tema (Bootstrap 5 üzerine)
   Primary: #00897B (teal)  ·  Secondary: #455A64
   ========================================================= */

:root {
    --rzt-primary: #00897B;
    --rzt-primary-dark: #00695C;
    --rzt-primary-light: #4DB6AC;
    --rzt-secondary: #455A64;
    --rzt-secondary-dark: #263238;
    --rzt-bg: #F4F6F8;
    --rzt-card: #FFFFFF;
    --rzt-border: #E0E4E8;
    --rzt-text: #1F2A30;
    --rzt-muted: #6B7B83;
    --rzt-success: #2E7D32;
    --rzt-warning: #ED6C02;
    --rzt-danger:  #C62828;

    --sidebar-width: 248px;
    --topbar-height: 64px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--rzt-bg);
    color: var(--rzt-text);
    font-size: 14.5px;
}

a { color: var(--rzt-primary); text-decoration: none; }
a:hover { color: var(--rzt-primary-dark); }

/* ---------------- App shell ---------------- */
.app-shell {
    display: flex;
    min-height: 100vh;
}

/* ---------------- Sidebar ---------------- */
.sidebar {
    width: var(--sidebar-width);
    background: var(--rzt-secondary-dark);
    color: #CFD8DC;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
}

.sidebar-brand {
    padding: 18px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-brand-logo {
    max-width: 242px;
    width: 100%;
    height: auto;
    display: block;
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
}
.nav-section-title {
    color: #78909C;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 16px 22px 6px;
}
.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    color: #B0BEC5;
    transition: background 0.15s, color 0.15s;
    border-left: 3px solid transparent;
}
.nav-item i { font-size: 17px; min-width: 18px; text-align: center; }
.nav-item:hover {
    background: rgba(255,255,255,0.04);
    color: #ECEFF1;
}
.nav-item.active {
    background: rgba(0, 137, 123, 0.18);
    color: #FFFFFF;
    border-left-color: var(--rzt-primary);
}

.sidebar-footer {
    padding: 14px 22px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: #78909C;
}

/* ---------------- Main + topbar ---------------- */
.app-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.topbar {
    height: var(--topbar-height);
    background: #FFFFFF;
    border-bottom: 1px solid var(--rzt-border);
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 10;
}
.topbar-toggle {
    display: none;
    background: transparent;
    border: 0;
    font-size: 22px;
    color: var(--rzt-secondary);
}
.topbar-title { flex: 1; min-width: 0; }
.topbar-title h1 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--rzt-secondary-dark);
}
.topbar-title .breadcrumb {
    background: transparent;
    padding: 2px 0 0;
    margin: 0;
    font-size: 12px;
    color: var(--rzt-muted);
}
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.role-badge {
    background: rgba(0,137,123,0.1);
    color: var(--rzt-primary-dark);
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
}

.user-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 0;
    color: var(--rzt-text);
    padding: 6px 8px;
    border-radius: 8px;
}
.user-button:hover { background: var(--rzt-bg); }
.avatar {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--rzt-primary);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}
.user-name { font-weight: 500; }

/* ---------------- Content ---------------- */
.content-area { padding: 24px; flex: 1; }

/* ---------------- Cards & utility ---------------- */
.card {
    background: var(--rzt-card);
    border: 1px solid var(--rzt-border);
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(16,24,40,0.04);
}
.card-header {
    background: transparent;
    border-bottom: 1px solid var(--rzt-border);
    font-weight: 600;
    color: var(--rzt-secondary-dark);
}

.btn-primary {
    background: var(--rzt-primary);
    border-color: var(--rzt-primary);
}
.btn-primary:hover {
    background: var(--rzt-primary-dark);
    border-color: var(--rzt-primary-dark);
}
.btn-outline-primary {
    color: var(--rzt-primary);
    border-color: var(--rzt-primary);
}
.btn-outline-primary:hover {
    background: var(--rzt-primary);
    border-color: var(--rzt-primary);
}

.text-primary-rzt { color: var(--rzt-primary) !important; }
.bg-primary-rzt { background: var(--rzt-primary) !important; color: #fff; }

/* ---------------- Login ---------------- */
.auth-body {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--rzt-primary) 0%, var(--rzt-secondary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.auth-shell {
    width: 100%;
    max-width: 420px;
}
.auth-card {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 36px 32px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.auth-brand {
    text-align: center;
    margin-bottom: 28px;
}
.auth-brand .brand-logo {
    width: auto;
    height: 82px;
  
    margin: 0 auto 10px;
    display: block;
}
.auth-brand p { color: var(--rzt-muted); margin: 0; font-size: 13px; }

.form-control:focus {
    border-color: var(--rzt-primary);
    box-shadow: 0 0 0 0.2rem rgba(0,137,123,0.18);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 991px) {
    .sidebar {
        position: fixed;
        left: 0; top: 0;
        transform: translateX(-100%);
        transition: transform 0.2s ease-out;
        z-index: 50;
    }
    .sidebar.is-open { transform: translateX(0); }
    .topbar-toggle { display: inline-flex; }
}

/* =================================================================
   Modern sayfa öğeleri — Page header, stat cards, list cards, vb.
   ================================================================= */

/* ---- Page Header ---- */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}
.page-header .ph-text h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: var(--rzt-secondary-dark);
}
.page-header .ph-text p {
    color: var(--rzt-muted);
    margin: 4px 0 0;
    font-size: 13px;
}
.page-header .ph-actions { display: flex; gap: 8px; }

/* ---- Stat Cards ---- */
.stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}
.stat-card {
    background: var(--rzt-card);
    border: 1px solid var(--rzt-border);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.15s, box-shadow 0.15s;
}
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(16,24,40,0.08);
}
.stat-card .stat-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 22px;
}
.stat-card .stat-icon.bg-teal   { background: rgba(0,137,123,0.12);  color: var(--rzt-primary-dark); }
.stat-card .stat-icon.bg-amber  { background: rgba(237,108,2,0.12);  color: #ED6C02; }
.stat-card .stat-icon.bg-blue   { background: rgba(2,136,209,0.12);  color: #0277BD; }
.stat-card .stat-icon.bg-rose   { background: rgba(198,40,40,0.12);  color: var(--rzt-danger); }
.stat-card .stat-icon.bg-violet { background: rgba(123,31,162,0.12); color: #7B1FA2; }

.stat-card .stat-text { display: flex; flex-direction: column; }
.stat-card .stat-label { font-size: 12px; color: var(--rzt-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.stat-card .stat-value { font-size: 24px; font-weight: 700; color: var(--rzt-secondary-dark); line-height: 1.2; }
.stat-card .stat-sub { font-size: 11px; color: var(--rzt-muted); margin-top: 2px; }

/* ---- Section Card ---- */
.section-card {
    background: var(--rzt-card);
    border: 1px solid var(--rzt-border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}
.section-card .section-head {
    padding: 16px 20px;
    border-bottom: 1px solid var(--rzt-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section-card .section-head h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--rzt-secondary-dark);
}
.section-card .section-head p {
    margin: 2px 0 0;
    font-size: 12px;
    color: var(--rzt-muted);
}
.section-card .section-body { padding: 20px; }
.section-card .section-actions { display: flex; gap: 8px; }

/* ---- Form refinements ---- */
.form-label { font-size: 13px; font-weight: 500; color: var(--rzt-secondary-dark); }
.form-control, .form-select, .form-check-input { border-color: var(--rzt-border); }
.form-text { font-size: 11px; color: var(--rzt-muted); }

/* ---- Cover preview ---- */
.cover-preview {
    width: 100%;
    height: 180px;
    background-color: var(--rzt-bg);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    border: 1px dashed var(--rzt-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rzt-muted);
}

/* ---- Status Badges ---- */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    line-height: 1;
}
.status-badge::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    display: inline-block;
}
.status-pending   { background: rgba(237,108,2,0.12);  color: #ED6C02; }
.status-pending::before   { background: #ED6C02; }
.status-confirmed { background: rgba(46,125,50,0.12); color: #2E7D32; }
.status-confirmed::before { background: #2E7D32; }
.status-cancelled { background: rgba(198,40,40,0.12); color: var(--rzt-danger); }
.status-cancelled::before { background: var(--rzt-danger); }
.status-completed { background: rgba(2,136,209,0.12); color: #0277BD; }
.status-completed::before { background: #0277BD; }
.status-noshow    { background: rgba(96,96,96,0.12); color: #555555; }
.status-noshow::before    { background: #555555; }

/* ---- Tables Grid — modern floor-plan style ---- */
.table-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.table-tile {
    background: var(--rzt-card);
    border: 1px solid var(--rzt-border);
    border-radius: 14px;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.18s, box-shadow 0.18s;
}
.table-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(16,24,40,0.10);
}
.table-tile.is-inactive { opacity: 0.62; }

/* SVG wrap — sıcak ahşap zemin */
.table-svg-wrap {
    position: relative;
    background:
        radial-gradient(circle at 50% 60%, rgba(0,0,0,0.05) 0%, transparent 60%),
        linear-gradient(135deg, #F8F4EC 0%, #EFEAE0 100%);
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.table-svg {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 1;
    display: block;
}
.table-svg text {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.svg-badge {
    position: absolute;
    top: 10px;
    left: 10px;
}

.table-tile-info { padding: 12px 14px 8px; }
.tt-num { font-size: 15px; font-weight: 700; color: var(--rzt-secondary-dark); }
.tt-cap {
    background: rgba(0,137,123,0.10);
    color: var(--rzt-primary-dark);
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
}
.tt-loc {
    font-size: 12px;
    color: var(--rzt-muted);
}

.table-tile-actions {
    display: flex;
    gap: 6px;
    padding: 0 14px 14px;
}
.table-tile-actions .btn { font-size: 12px; }
.table-tile-actions .edit-table-btn { flex: 1; }

/* ---- Reservation Row ---- */
.res-row {
    background: var(--rzt-card);
    border: 1px solid var(--rzt-border);
    border-left-width: 4px;
    border-left-color: var(--rzt-border);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 16px;
    align-items: center;
}
.res-row.is-pending { border-left-color: #ED6C02; background: rgba(237,108,2,0.03); }
.res-row.is-confirmed { border-left-color: #2E7D32; }
.res-row.is-cancelled { border-left-color: var(--rzt-danger); opacity: 0.85; }
.res-row .res-date {
    text-align: center;
    background: var(--rzt-bg);
    border-radius: 8px;
    padding: 8px;
}
.res-row .res-date .day  { font-size: 18px; font-weight: 700; color: var(--rzt-secondary-dark); line-height: 1; }
.res-row .res-date .mon  { font-size: 11px; color: var(--rzt-muted); text-transform: uppercase; }
.res-row .res-date .time { font-size: 13px; font-weight: 600; color: var(--rzt-primary-dark); margin-top: 4px; }
.res-row .res-guest .name { font-weight: 600; color: var(--rzt-secondary-dark); }
.res-row .res-guest .meta { font-size: 12px; color: var(--rzt-muted); margin-top: 2px; }
.res-row .res-party {
    background: var(--rzt-bg);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    color: var(--rzt-secondary-dark);
}
.res-row .res-actions { display: flex; gap: 6px; }

@media (max-width: 768px) {
    .res-row { grid-template-columns: 80px 1fr; }
    .res-row .res-party, .res-row .res-actions { grid-column: 1 / -1; }
}

/* ---- Review Card ---- */
.review-card {
    background: var(--rzt-card);
    border: 1px solid var(--rzt-border);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 12px;
}
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.review-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--rzt-primary);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 600;
}
.review-name { font-weight: 600; color: var(--rzt-secondary-dark); }
.review-meta { font-size: 12px; color: var(--rzt-muted); }
.review-stars { color: #FFB400; letter-spacing: 1px; }
.review-comment { color: var(--rzt-text); line-height: 1.5; margin-top: 4px; }

/* Rating distribution */
.rating-summary { display: flex; align-items: center; gap: 24px; padding: 20px; }
.rating-summary .big-num {
    font-size: 56px; font-weight: 700; color: var(--rzt-secondary-dark); line-height: 1;
}
.rating-summary .big-num + small {
    color: var(--rzt-muted); font-size: 13px;
}
.rating-bars { flex: 1; }
.rating-bar-row {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; margin-bottom: 4px;
}
.rating-bar-row .label { width: 30px; color: var(--rzt-muted); }
.rating-bar-row .bar {
    flex: 1; height: 8px;
    background: var(--rzt-border);
    border-radius: 999px; overflow: hidden;
}
.rating-bar-row .bar-fill {
    height: 100%; background: #FFB400; border-radius: 999px;
}
.rating-bar-row .count { width: 36px; text-align: right; color: var(--rzt-muted); }

/* ---- Modal refinements ---- */
.modal-content { border-radius: 12px; border: 0; }
.modal-header { border-bottom: 1px solid var(--rzt-border); }
.modal-footer { border-top: 1px solid var(--rzt-border); }

/* ---- Empty State ---- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--rzt-muted);
}
.empty-state .bi { font-size: 48px; color: var(--rzt-border); margin-bottom: 10px; }
.empty-state h4 { color: var(--rzt-secondary-dark); margin-bottom: 4px; }

/* =================================================================
   Dashboard — Hero card, mini-res, photo gallery, drop zone
   ================================================================= */

/* ---- Hero card ---- */
.hero-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(16,24,40,0.10);
}
.hero-cover {
    position: relative;
    min-height: 240px;
    background-color: var(--rzt-primary);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.70) 100%);
}
.hero-content {
    position: relative;
    padding: 32px 28px;
    color: #fff;
    width: 100%;
}
.hero-greeting { font-size: 14px; opacity: 0.85; margin-bottom: 4px; }
.hero-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.1;
}
.hero-meta {
    display: flex; flex-wrap: wrap; gap: 14px;
    font-size: 13px; opacity: 0.95; margin-bottom: 18px;
}
.hero-meta .status-badge { padding: 6px 12px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---- Mini reservation row ---- */
.mini-res {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--rzt-border);
}
.mini-res:last-child { border-bottom: 0; }
.mini-res-date {
    width: 48px;
    text-align: center;
    background: var(--rzt-bg);
    border-radius: 8px;
    padding: 6px 4px;
}
.mini-res-date .d { font-size: 16px; font-weight: 700; color: var(--rzt-secondary-dark); line-height: 1; }
.mini-res-date .m { font-size: 10px; color: var(--rzt-muted); text-transform: uppercase; }
.mini-res-time {
    width: 64px;
    text-align: center;
    background: rgba(0,137,123,0.08);
    color: var(--rzt-primary-dark);
    font-weight: 700;
    padding: 8px 4px;
    border-radius: 8px;
}
.mini-res-info { flex: 1; min-width: 0; }
.mini-res-info .name { font-weight: 600; color: var(--rzt-secondary-dark); }
.mini-res-info .meta { font-size: 12px; color: var(--rzt-muted); margin-top: 2px; }

/* ---- Photo gallery ---- */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
}
.photo-tile {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    background-color: var(--rzt-bg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.photo-tile .photo-remove {
    position: absolute;
    top: 6px; right: 6px;
    width: 28px; height: 28px;
    border: 0;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.15s, background 0.15s;
}
.photo-tile:hover .photo-remove { opacity: 1; }
.photo-tile .photo-remove:hover { background: var(--rzt-danger); }

/* ---- Drop Zone ---- */
.drop-zone {
    border: 2px dashed var(--rzt-border);
    border-radius: 12px;
    padding: 28px 16px;
    text-align: center;
    background: var(--rzt-bg);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.drop-zone:hover { border-color: var(--rzt-primary); background: rgba(0,137,123,0.04); }
.drop-zone.is-drag {
    border-color: var(--rzt-primary);
    background: rgba(0,137,123,0.08);
    transform: scale(1.02);
}
.drop-zone-inner i {
    font-size: 36px;
    color: var(--rzt-primary);
    margin-bottom: 8px;
    display: block;
}
.dz-title { font-weight: 600; color: var(--rzt-secondary-dark); }
.dz-sub   { color: var(--rzt-muted); font-size: 13px; margin-top: 2px; }
.dz-sub a { color: var(--rzt-primary); font-weight: 600; }
.dz-hint  { font-size: 11px; color: var(--rzt-muted); margin-top: 6px; }

/* Upload rows */
.dz-uploads { margin-top: 12px; }
.dz-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--rzt-card);
    border: 1px solid var(--rzt-border);
    border-radius: 10px;
    margin-bottom: 6px;
}
.dz-row.error { border-color: var(--rzt-danger); background: rgba(198,40,40,0.04); }
.dz-row-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(0,137,123,0.10);
    color: var(--rzt-primary-dark);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.dz-row-body { flex: 1; min-width: 0; }
.dz-row-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--rzt-secondary-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.dz-row-bar {
    margin-top: 4px;
    height: 4px;
    background: var(--rzt-border);
    border-radius: 999px;
    overflow: hidden;
}
.dz-row-fill {
    height: 100%;
    width: 0%;
    background: var(--rzt-primary);
    transition: width 0.2s;
}
.dz-row-fill.done { background: #2E7D32; }
.dz-row-status {
    font-size: 12px;
    color: var(--rzt-muted);
    font-weight: 600;
    min-width: 40px;
    text-align: right;
}


/* ============================================================
   Restoranım — Online Rezervasyon Linki kartı (Google Booking URL)
   ============================================================ */
.booking-link-card {
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.06), rgba(0, 137, 123, 0.03));
    border-color: rgba(0, 201, 167, 0.25);
    position: relative;
}
.booking-link-card .section-head { border-bottom-color: rgba(0, 201, 167, 0.15); }
.booking-head { align-items: flex-start; }
.booking-tag {
    background: rgba(0, 201, 167, 0.15);
    color: #00897B;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.booking-url-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.booking-url-display {
    flex: 1;
    min-width: 280px;
    padding: 11px 16px;
    background: white;
    border: 1.5px solid #E5E9EE;
    border-radius: 10px;
    font-family: 'SF Mono', 'Menlo', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #0B0E11;
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: all;
}
.booking-url-display i { color: #00897B; font-size: 18px; }
.btn-outline-rzt,
.btn-rzt {
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.18s;
    border: 1.5px solid transparent;
    white-space: nowrap;
}
.btn-outline-rzt { background: white; color: #00897B; border-color: rgba(0, 201, 167, 0.4); }
.btn-outline-rzt:hover { background: rgba(0, 201, 167, 0.08); border-color: #00897B; }
.btn-rzt { background: linear-gradient(135deg, #00C9A7, #00897B); color: white; box-shadow: 0 4px 12px rgba(0, 137, 123, 0.25); }
.btn-rzt:hover { color: white; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0, 137, 123, 0.35); }
.btn-copied {
    background: #00897B !important;
    color: white !important;
    border-color: #00897B !important;
    animation: copiedPop 0.4s ease;
}
@keyframes copiedPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.booking-bottom {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: start;
}
@media (max-width: 768px) { .booking-bottom { grid-template-columns: 1fr; } }

.booking-qr { text-align: center; }
.booking-qr img {
    width: 200px; height: 200px;
    border: 1px solid #E5E9EE;
    border-radius: 14px;
    padding: 6px;
    background: white;
    display: block;
    margin: 0 auto;
}
.booking-qr small {
    display: block; margin-top: 10px;
    color: #5A6470; font-size: 11px;
}

.booking-tips h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #0B0E11;
}
.booking-tip {
    display: flex; gap: 12px; align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.booking-tip:last-of-type { border-bottom: none; }
.tip-icon {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: white; font-size: 16px;
    flex-shrink: 0;
}
.tip-body strong { display: block; font-size: 13px; font-weight: 700; color: #0B0E11; margin-bottom: 1px; }
.tip-body small { color: #5A6470; font-size: 11px; line-height: 1.4; }

.booking-guide {
    display: inline-flex; align-items: center; gap: 6px;
    color: #00897B; font-size: 12px; font-weight: 600;
    text-decoration: none;
    margin-top: 14px;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(0, 201, 167, 0.08);
}
.booking-guide:hover { background: rgba(0, 201, 167, 0.15); color: #006E62; }
.booking-guide-list {
    margin-top: 10px;
    padding-left: 22px;
    font-size: 12px;
    color: #5A6470;
    line-height: 1.7;
}
.booking-guide-list li code {
    background: rgba(0, 201, 167, 0.08);
    color: #00897B;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'SF Mono', monospace;
}
.booking-guide-list a { color: #00897B; font-weight: 600; }

/* ============================================================
   Kapak Görseli — sürükle bırak overlay
   ============================================================ */
.cover-preview {
    position: relative;
    cursor: pointer;
}
.cover-dropzone-overlay {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 14, 17, 0.45);
    backdrop-filter: blur(2px);
    color: white;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}
/* Hover'da overlay görünür, görselin üzerinden de seçilebilir olsun */
.cover-preview:hover .cover-dropzone-overlay,
.cover-dropzone-overlay.is-drag {
    opacity: 1;
    pointer-events: auto;
}
/* Görsel yoksa overlay hep görünsün, bg-ı yumuşak olsun */
.cover-preview:not([style*="background-image"]) .cover-dropzone-overlay,
.cover-preview[style*='background-image: ""'] .cover-dropzone-overlay,
.cover-preview[style=""] .cover-dropzone-overlay {
    opacity: 1;
    pointer-events: auto;
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.85), rgba(0, 137, 123, 0.75));
}
.cover-dropzone-overlay.is-drag {
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.92), rgba(0, 137, 123, 0.92));
    box-shadow: inset 0 0 0 3px white;
}
.cover-overlay-content {
    text-align: center;
    user-select: none;
    pointer-events: none;
}
.cover-overlay-content i {
    font-size: 36px;
    display: block;
    margin-bottom: 6px;
}
.cover-overlay-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}
.cover-overlay-sub {
    font-size: 11px;
    opacity: 0.85;
}
.cover-progress {
    display: none;
    position: absolute;
    inset: auto 0 0 0;
    padding: 12px 16px;
    background: rgba(11, 14, 17, 0.85);
    color: white;
    backdrop-filter: blur(8px);
}
.cover-progress.active {
    display: block;
}
.cover-progress-bar {
    height: 4px;
    background: linear-gradient(90deg, #00C9A7, #00897B);
    border-radius: 2px;
    width: 0;
    transition: width 0.2s ease;
    margin-bottom: 6px;
}
.cover-progress-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
