/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

:root {
    --bg: #f4f6fb;
    --surface: #ffffff;
    --surface-2: #f9fafc;
    --border: #e4e8ee;
    --text: #1f2937;
    --text-muted: #6b7280;
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-soft: #dbeafe;
    --success: #16a34a;
    --success-soft: #dcfce7;
    --warning: #f59e0b;
    --warning-soft: #fef3c7;
    --danger: #dc2626;
    --danger-soft: #fee2e2;
    --info: #0ea5e9;
    --info-soft: #e0f2fe;
    --sidebar-bg: #1e293b;
    --sidebar-text: #cbd5e1;
    --sidebar-text-active: #ffffff;
    --sidebar-active-bg: #2563eb;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.08);
    --radius: 8px;
    --radius-sm: 6px;
    --header-h: 60px;
    --sidebar-w: 240px;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; }
input, select, textarea, button { font-family: inherit; font-size: 14px; }

/* ===== Layout ===== */
.app { min-height: 100vh; display: flex; }

.sidebar {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: var(--sidebar-w);
    background: var(--sidebar-bg);
    color: var(--sidebar-text);
    z-index: 200;
    overflow-y: auto;
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

.sidebar-brand {
    height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-weight: 700;
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.3px;
}
.sidebar-brand .logo-mark {
    width: 32px; height: 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 700;
}

.sidebar-section {
    padding: 14px 18px 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
}

.sidebar-nav { list-style: none; padding: 0; margin: 0; }
.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    color: var(--sidebar-text);
    text-decoration: none;
    border-left: 3px solid transparent;
    font-size: 14px;
    transition: background 0.15s, color 0.15s;
}
.sidebar-nav a:hover { background: rgba(255,255,255,0.05); color: #fff; text-decoration: none; }
.sidebar-nav a.active {
    background: rgba(37, 99, 235, 0.15);
    color: #fff;
    border-left-color: var(--primary);
}
.sidebar-nav .icon {
    width: 18px; height: 18px;
    flex-shrink: 0;
    stroke-width: 2;
}
.sidebar-footer {
    margin-top: auto;
    padding: 14px 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
    color: #94a3b8;
}

/* Topbar */
.topbar {
    height: var(--header-h);
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 12px;
}
.topbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--text);
}
.topbar-title {
    font-size: 16px;
    font-weight: 600;
}
.topbar-spacer { flex: 1; }
.topbar-user {
    display: flex; align-items: center; gap: 10px;
    color: var(--text-muted);
    font-size: 13px;
}
.topbar-user .avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    display: grid; place-items: center;
    font-weight: 700;
    font-size: 13px;
}

.main {
    flex: 1;
    margin-left: var(--sidebar-w);
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.content {
    padding: 24px 28px 60px;
    flex: 1;
}

/* ===== Page header ===== */
.page-head {
    display: flex; align-items: flex-start; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    margin-bottom: 22px;
}
.page-head h1 { margin: 0 0 4px; font-size: 22px; font-weight: 700; color: var(--text); }
.page-head p { margin: 0; color: var(--text-muted); font-size: 14px; }
.page-head .actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.05s;
    white-space: nowrap;
    line-height: 1.2;
}
.btn:active { transform: translateY(1px); }
.btn:focus { outline: 2px solid var(--primary-soft); outline-offset: 1px; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); color: #fff; text-decoration: none; }
.btn-success { background: var(--success); color: #fff; border-color: var(--success); }
.btn-success:hover { background: #15803d; color: #fff; text-decoration: none; }
.btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-danger:hover { background: #b91c1c; color: #fff; text-decoration: none; }
.btn-warning { background: var(--warning); color: #fff; border-color: var(--warning); }
.btn-warning:hover { background: #d97706; color: #fff; text-decoration: none; }
.btn-secondary { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn-secondary:hover { background: var(--surface-2); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--text); border-color: transparent; }
.btn-ghost:hover { background: var(--surface-2); text-decoration: none; }
.btn-sm { padding: 5px 10px; font-size: 12px; border-radius: 5px; }
.btn-icon {
    padding: 6px;
    min-width: 32px; min-height: 32px;
}
.btn-icon svg { width: 16px; height: 16px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===== Cards ===== */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 18px;
}
.card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}
.card-header h2 { margin: 0; font-size: 16px; font-weight: 600; }
.card-body { padding: 20px; }

/* ===== Forms ===== */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}
.form-group label .req { color: var(--danger); }
.form-control {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--text);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}
.form-control:disabled { background: var(--surface-2); color: var(--text-muted); }
textarea.form-control { min-height: 100px; resize: vertical; }
.form-actions {
    display: flex; gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* ===== Toolbar (search + filters) ===== */
.toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.search-input {
    position: relative;
    flex: 1;
    min-width: 220px;
    max-width: 380px;
}
.search-input input {
    width: 100%;
    padding: 9px 12px 9px 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
}
.search-input svg {
    position: absolute;
    left: 11px; top: 50%;
    transform: translateY(-50%);
    width: 16px; height: 16px;
    color: var(--text-muted);
    pointer-events: none;
}
.toolbar-info {
    color: var(--text-muted);
    font-size: 13px;
    margin-left: auto;
}

/* ===== Table ===== */
.table-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.table {
    width: 100%;
    border-collapse: collapse;
}
.table thead th {
    text-align: left;
    background: var(--surface-2);
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    white-space: nowrap;
}
.table thead th.sortable { cursor: pointer; user-select: none; }
.table thead th.sortable:hover { color: var(--text); }
.table thead th.sortable .arrow { opacity: 0.4; margin-left: 4px; }
.table thead th.sorted-asc .arrow,
.table thead th.sorted-desc .arrow { opacity: 1; color: var(--primary); }
.table tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr:hover { background: var(--surface-2); }
.table tbody tr.row-hidden { display: none; }
.row-hidden { display: none !important; }

.cell-actions { display: flex; gap: 6px; white-space: nowrap; }

.empty-state {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
}

/* ===== AnyDesk copyable cell ===== */
.anydesk-cell {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    border-radius: 6px;
    background: var(--info-soft);
    color: var(--info);
    font-weight: 600;
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 13px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.15s, border-color 0.15s;
    user-select: none;
}
.anydesk-cell:hover {
    border-color: var(--info);
}
.anydesk-cell.copied {
    background: var(--success-soft);
    color: var(--success);
}
.anydesk-cell svg { width: 13px; height: 13px; }

/* Inline date editor */
.inline-date {
    display: flex;
    align-items: center;
    gap: 6px;
}
.inline-date input[type="date"] {
    padding: 5px 8px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: var(--surface);
    font-size: 13px;
    width: 140px;
}
.inline-date input[type="date"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary-soft);
}
.inline-date .save-btn {
    padding: 5px 8px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    transition: background 0.15s;
}
.inline-date .save-btn:hover { background: var(--primary-hover); }
.inline-date .save-btn.dirty { background: var(--warning); }
.inline-date .save-btn.saved { background: var(--success); }
.inline-date .save-btn svg { width: 13px; height: 13px; }

/* ===== Badges ===== */
.badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.badge-success { background: var(--success-soft); color: var(--success); }
.badge-danger { background: var(--danger-soft); color: var(--danger); }
.badge-warning { background: var(--warning-soft); color: #92400e; }
.badge-info { background: var(--info-soft); color: var(--info); }
.badge-muted { background: var(--surface-2); color: var(--text-muted); }

/* ===== Toast ===== */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
    pointer-events: none;
}
.toast {
    background: var(--text);
    color: #fff;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    max-width: 360px;
    pointer-events: auto;
    animation: toast-in 0.2s ease;
    font-size: 14px;
}
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.info { background: var(--info); }
.toast.fade-out { animation: toast-out 0.25s ease forwards; }
@keyframes toast-in {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes toast-out {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(20px); opacity: 0; }
}

/* ===== Modal ===== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 500;
    padding: 16px;
}
.modal-backdrop.show { display: flex; animation: fade-in 0.15s ease; }
.modal {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    animation: modal-in 0.2s ease;
}
.modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
}
.modal-header h3 { margin: 0; font-size: 16px; }
.modal-body { padding: 20px; }
.modal-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    display: flex; gap: 8px; justify-content: flex-end;
}
.modal-close {
    background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text-muted); line-height: 1; padding: 0 4px;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-in {
    from { transform: translateY(-12px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ===== Login page ===== */
.login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
    padding: 20px;
}
.login-card {
    background: var(--surface);
    border-radius: 12px;
    padding: 36px 32px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
}
.login-card .brand {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 8px;
}
.login-card .brand .logo-mark {
    width: 44px; height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 18px;
}
.login-card h1 { margin: 0; font-size: 22px; }
.login-card .subtitle { color: var(--text-muted); margin: 4px 0 24px; font-size: 14px; }

/* ===== Ticket details ===== */
.ticket-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}
.ticket-meta .meta {
    background: var(--surface-2);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.ticket-meta .meta .label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.ticket-meta .meta .value {
    font-weight: 600;
    font-size: 14px;
    word-break: break-word;
}
.message-block {
    background: var(--surface-2);
    border-left: 3px solid var(--primary);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    white-space: pre-wrap;
    font-size: 14px;
}

/* ===== Mobile cards (responsive table replacement) ===== */
.mobile-cards { display: none; }
.mobile-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
}
.mobile-card .head {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}
.mobile-card .partner { font-weight: 600; font-size: 15px; }
.mobile-card .objekat { color: var(--text-muted); font-size: 13px; }
.mobile-card .row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 0;
    border-top: 1px solid var(--border);
    gap: 10px;
}
.mobile-card .row .lbl {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.mobile-card .row .val { font-weight: 500; font-size: 13px; word-break: break-all; }
.mobile-card .actions {
    display: flex; gap: 6px;
    margin-top: 10px;
    flex-wrap: wrap;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    :root { --sidebar-w: 220px; }
}
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        box-shadow: var(--shadow-lg);
    }
    .sidebar.open { transform: translateX(0); }
    .main { margin-left: 0; }
    .topbar-toggle { display: inline-flex; align-items: center; }
    .content { padding: 16px; }
    .form-grid { grid-template-columns: 1fr; }
    .table-wrap { display: none; }
    .mobile-cards { display: block; }
    .toast-container { left: 16px; right: 16px; bottom: 16px; }
    .toast { max-width: none; }
    .page-head h1 { font-size: 19px; }
}

/* Sidebar overlay (mobile) */
.sidebar-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(15, 23, 42, 0.4);
    z-index: 150;
}
.sidebar-overlay.show { display: block; }

/* ===== Sidebar badge count ===== */
.sidebar-nav a .badge-count {
    margin-left: auto;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    min-width: 22px;
    height: 20px;
    padding: 0 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ===== Napomene: tabs ===== */
.tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}
.tab {
    background: none;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab .count {
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 999px;
    padding: 1px 8px;
    font-size: 11px;
    font-weight: 700;
}
.tab.active .count { background: var(--primary-soft); color: var(--primary); border-color: transparent; }

/* ===== Napomene: list cards ===== */
.napomena-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
    display: block;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.15s, transform 0.05s;
}
.napomena-card:hover { border-color: var(--primary); text-decoration: none; color: var(--text); }
.napomena-card .top {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 12px; margin-bottom: 6px;
}
.napomena-card .naslov { font-weight: 600; font-size: 15px; flex: 1; word-break: break-word; }
.napomena-card .meta {
    color: var(--text-muted); font-size: 12px;
    display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.napomena-card .meta .count {
    display: inline-flex; align-items: center; gap: 4px;
}

/* ===== Thread (chat) ===== */
.thread {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}
.msg {
    align-self: stretch;
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--border);
    line-height: 1.5;
    word-break: break-word;
    white-space: pre-wrap;
    box-shadow: var(--shadow-sm);
}
.msg .msg-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: baseline;
    flex-wrap: wrap;
}
.msg .msg-meta .who { color: var(--text); }
.msg.me {
    border-left-color: var(--primary);
}
.msg.me .msg-meta .who { color: var(--primary); }
.msg.first {
    background: #fffbeb;
    border-color: #fde68a;
    border-left-color: #f59e0b;
}
.msg.first .msg-meta .who { color: #b45309; }

.reply-form {
    position: sticky;
    bottom: 12px;
    z-index: 20;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px;
    box-shadow: 0 -4px 18px rgba(0,0,0,0.06);
    display: flex;
    gap: 8px;
    margin-top: 16px;
    align-items: flex-end;
}
.reply-form textarea {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 9px 12px;
    resize: none;
    min-height: 42px;
    max-height: 180px;
    font: inherit;
    color: inherit;
    background: var(--surface);
}
.reply-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}
.reply-form .hint {
    font-size: 11px;
    color: var(--text-muted);
    padding: 0 4px 4px;
}
.reply-form .send-wrap {
    display: flex; flex-direction: column; gap: 4px; align-items: flex-end;
}
.reply-archived-notice {
    margin-top: 16px;
    padding: 14px;
    background: var(--surface-2);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

@media (max-width: 768px) {
    .reply-form { bottom: 8px; }
}

/* Backed-up tables list */
.backups {
    display: grid;
    gap: 8px;
}
.backup-row {
    display: flex; justify-content: space-between; align-items: center;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    flex-wrap: wrap;
    gap: 10px;
}
.backup-row .info { display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.backup-row .info .name { font-weight: 600; }
.backup-row .info .meta { color: var(--text-muted); font-size: 12px; }

/* Utility */
.text-muted { color: var(--text-muted); }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mt-2 { margin-top: 16px; }
.flex-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
