/* ============================================================
   Pictureworks Leave Manager — Shared Stylesheet
   ============================================================
   All component classes for the application. Views reference
   these classes instead of inline styles. Brand colours are
   exposed as CSS custom properties for easy theming.
   ============================================================ */

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
    --pw-primary: #1a56db;
    --pw-primary-hover: #1e40af;
    --pw-primary-alt: #2563eb;
    --pw-primary-light: #3b82f6;
    --pw-sidebar-bg: #1f2937;
    --pw-sidebar-text: #d1d5db;
    --pw-sidebar-hover-bg: #374151;
    --pw-sidebar-active-accent: #3b82f6;
    --pw-success: #059669;
    --pw-success-light: #16a34a;
    --pw-danger: #dc2626;
    --pw-danger-hover: #ef4444;
    --pw-warning: #d97706;
    --pw-body-bg: #f3f4f6;
    --pw-card-bg: #ffffff;
    --pw-border: #e5e7eb;
    --pw-border-light: #f3f4f6;
    --pw-text: #111827;
    --pw-text-secondary: #374151;
    --pw-text-muted: #6b7280;
    --pw-text-placeholder: #9ca3af;
    --pw-input-border: #d1d5db;
    --pw-table-header-bg: #f9fafb;
}

/* ── Global Reset ────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--pw-body-bg);
    color: var(--pw-text);
    min-height: 100vh;
    display: flex;
}

/* ── Sidebar ─────────────────────────────────────────────── */
.sidebar {
    width: 240px;
    background: var(--pw-sidebar-bg);
    color: var(--pw-sidebar-text);
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
}

.sidebar-brand {
    padding: 20px 24px;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid var(--pw-sidebar-hover-bg);
}

.sidebar-nav {
    flex: 1;
    padding: 16px 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 10px 24px;
    color: var(--pw-text-placeholder);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}

.sidebar-nav a:hover {
    background: var(--pw-sidebar-hover-bg);
    color: #f9fafb;
}

.sidebar-nav a.active {
    background: var(--pw-sidebar-hover-bg);
    color: #fff;
    border-right: 3px solid var(--pw-sidebar-active-accent);
}

.sidebar-section {
    padding: 20px 24px 6px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pw-text-muted);
}

/* ── Main Area ───────────────────────────────────────────── */
.main-area {
    margin-left: 240px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.topbar {
    background: var(--pw-card-bg);
    border-bottom: 1px solid var(--pw-border);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.topbar .user-name {
    font-size: 0.875rem;
    color: var(--pw-text-secondary);
    font-weight: 500;
}

.topbar .role-badge {
    background: #dbeafe;
    color: var(--pw-primary-hover);
    padding: 2px 10px;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.logout-btn {
    background: none;
    border: 1px solid var(--pw-input-border);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.8125rem;
    color: var(--pw-text-secondary);
    cursor: pointer;
}

.logout-btn:hover {
    background: var(--pw-table-header-bg);
}

.content {
    flex: 1;
    padding: 24px;
}

/* ── Flash Messages ──────────────────────────────────────── */
.flash-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.flash-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

/* ── Inline Form (logout, cancel actions) ────────────────── */
.inline-form {
    display: inline;
}

/* ── Login Page ──────────────────────────────────────────── */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-card {
    background: var(--pw-card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 48px 40px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-card h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.login-card .subtitle {
    font-size: 0.875rem;
    color: var(--pw-text-muted);
    margin-bottom: 32px;
}

.login-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.875rem;
    margin-bottom: 24px;
    text-align: left;
}

.google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--pw-card-bg);
    border: 1px solid var(--pw-input-border);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--pw-text-secondary);
    text-decoration: none;
    transition: background 0.15s, box-shadow 0.15s;
    width: 100%;
}

.google-btn:hover {
    background: var(--pw-table-header-bg);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.google-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}

.btn-primary {
    background: var(--pw-primary-light);
    color: #fff;
}

.btn-primary:hover {
    background: var(--pw-primary-alt);
}

.btn-primary-alt {
    background: var(--pw-primary-alt);
    color: #fff;
}

.btn-primary-alt:hover {
    background: var(--pw-primary);
}

.btn-secondary {
    background: var(--pw-text-secondary);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--pw-sidebar-bg);
}

.btn-danger {
    background: var(--pw-danger);
    color: #fff;
}

.btn-danger:hover {
    background: #b91c1c;
}

.btn-success {
    background: var(--pw-success);
    color: #fff;
}

.btn-success:hover {
    background: #047857;
}

.btn-link {
    background: none;
    border: none;
    color: var(--pw-text-muted);
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
}

.btn-outline {
    background: none;
    border: 1px solid var(--pw-input-border);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.8125rem;
    color: var(--pw-text-muted);
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--pw-table-header-bg);
}

.btn-add-date {
    background: none;
    border: 1px dashed var(--pw-text-placeholder);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.8125rem;
    color: var(--pw-text-muted);
    cursor: pointer;
    width: 100%;
}

.btn-add-date:hover {
    border-color: var(--pw-text-muted);
}

.btn-action-link {
    color: var(--pw-primary-alt);
    text-decoration: none;
    font-size: 0.8125rem;
}

.btn-action-link:hover {
    text-decoration: underline;
}

.btn-text-danger {
    background: none;
    border: none;
    color: var(--pw-danger);
    font-size: 0.8125rem;
    cursor: pointer;
    text-decoration: underline;
}

.btn-text-success {
    background: none;
    border: none;
    color: var(--pw-success-light);
    font-size: 0.8125rem;
    cursor: pointer;
    text-decoration: underline;
}

.btn-approve {
    background: var(--pw-success);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 4px 14px;
    font-size: 0.8125rem;
    cursor: pointer;
}

.btn-reject {
    background: var(--pw-danger);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 4px 14px;
    font-size: 0.8125rem;
    cursor: pointer;
}

.btn-remove-date {
    background: none;
    border: none;
    color: var(--pw-danger-hover);
    cursor: pointer;
    padding: 8px;
    font-size: 1.25rem;
    line-height: 1;
}

.btn-search {
    padding: 8px 16px;
    background: var(--pw-text-secondary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
}

.btn-clear {
    padding: 8px 16px;
    border: 1px solid var(--pw-input-border);
    border-radius: 6px;
    font-size: 0.875rem;
    text-decoration: none;
    color: var(--pw-text-secondary);
    display: inline-flex;
    align-items: center;
}

.btn-export {
    background: var(--pw-text-muted);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ── Badge Classes ───────────────────────────────────────── */
.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-admin {
    background: #ede9fe;
    color: #5b21b6;
}

.badge-employee {
    background: #e0f2fe;
    color: #0369a1;
}

.badge-active {
    background: #dcfce7;
    color: #166534;
}

.badge-inactive {
    background: #fee2e2;
    color: #991b1b;
}

/* ── Status Badges ───────────────────────────────────────── */
.status-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-approved {
    background: #d1fae5;
    color: #065f46;
}

.status-rejected {
    background: #fee2e2;
    color: #991b1b;
}

.status-cancelled {
    background: var(--pw-body-bg);
    color: var(--pw-text-muted);
}

/* ── Data Tables ─────────────────────────────────────────── */
.data-table-wrapper {
    background: var(--pw-card-bg);
    border-radius: 8px;
    border: 1px solid var(--pw-border);
    overflow: hidden;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.data-table th {
    text-align: left;
    padding: 10px 16px;
    background: var(--pw-table-header-bg);
    color: var(--pw-text-secondary);
    font-weight: 600;
    border-bottom: 1px solid var(--pw-border);
    font-size: 0.75rem;
    text-transform: uppercase;
}

.data-table th.text-right {
    text-align: right;
}

.data-table th.text-center {
    text-align: center;
}

.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--pw-border-light);
    color: var(--pw-text-secondary);
    font-size: 0.875rem;
}

.data-table td.text-right {
    text-align: right;
}

.data-table td.text-center {
    text-align: center;
}

.data-table td.text-muted {
    color: var(--pw-text-muted);
}

.data-table td.font-medium {
    font-weight: 500;
}

.data-table tbody tr {
    border-bottom: 1px solid var(--pw-border);
}

/* ── Request Tables (dashboard) ──────────────────────────── */
.request-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    margin-bottom: 32px;
    background: var(--pw-card-bg);
    border: 1px solid var(--pw-border);
    border-radius: 8px;
    overflow: hidden;
}

.request-table th {
    text-align: left;
    padding: 10px 14px;
    background: var(--pw-table-header-bg);
    color: var(--pw-text-secondary);
    font-weight: 600;
    border-bottom: 1px solid var(--pw-border);
}

.request-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--pw-border-light);
    color: var(--pw-text-secondary);
}

/* ── Form Classes ────────────────────────────────────────── */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.form-label-sm {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--pw-text-secondary);
    margin-bottom: 4px;
}

.form-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--pw-input-border);
    border-radius: 6px;
    font-size: 0.875rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--pw-primary-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input-error {
    border-color: var(--pw-danger-hover);
}

.form-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--pw-input-border);
    border-radius: 6px;
    font-size: 0.875rem;
    background: var(--pw-card-bg);
}

.form-select-error {
    border-color: var(--pw-danger-hover);
}

.form-textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--pw-input-border);
    border-radius: 6px;
    font-size: 0.875rem;
    resize: vertical;
}

.form-error {
    color: var(--pw-danger);
    font-size: 0.75rem;
    margin-top: 4px;
}

.form-error-lg {
    color: var(--pw-danger);
    font-size: 0.8125rem;
    margin-top: 4px;
}

.form-checkbox {
    width: 16px;
    height: 16px;
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    cursor: pointer;
}

.form-readonly {
    padding: 8px 12px;
    background: var(--pw-table-header-bg);
    border: 1px solid var(--pw-border);
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--pw-text-muted);
}

/* ── Form Card / Container ───────────────────────────────── */
.form-card {
    background: var(--pw-card-bg);
    border: 1px solid var(--pw-border);
    border-radius: 8px;
    padding: 24px;
}

.form-container {
    max-width: 640px;
}

.form-container-sm {
    max-width: 600px;
}

.form-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.form-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ── Layout Utilities ────────────────────────────────────── */
.page-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-heading-sm {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-heading-sub {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.page-header-actions {
    display: flex;
    gap: 8px;
}

.section-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--pw-text);
}

.empty-state {
    color: var(--pw-text-placeholder);
    font-size: 0.9375rem;
    padding: 20px 0;
}

.empty-state-card {
    background: var(--pw-card-bg);
    border: 1px solid var(--pw-border);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    color: var(--pw-text-muted);
}

.empty-state-card a {
    color: var(--pw-primary-light);
}

.back-link {
    color: var(--pw-primary-alt);
    text-decoration: none;
    font-size: 0.875rem;
}

.back-link:hover {
    text-decoration: underline;
}

.text-muted {
    color: var(--pw-text-muted);
}

.text-sm {
    font-size: 0.875rem;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-20 {
    margin-top: 20px;
}

.mr-12 {
    margin-right: 12px;
}

/* ── Notice / Warning ────────────────────────────────────── */
.notice-warning {
    background: #fefce8;
    border: 1px solid #fde68a;
    color: #92400e;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.notice-warning ul {
    margin: 8px 0 0 20px;
}

.notice-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.notice-error ul {
    margin: 0;
    padding-left: 20px;
}

.notice-success-alt {
    background: #dcfce7;
    color: #166534;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 0.875rem;
}

/* ── Dashboard ───────────────────────────────────────────── */
.dashboard-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.dashboard-subtitle {
    color: var(--pw-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 24px;
}

/* ── Balance Cards ───────────────────────────────────────── */
.balance-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.balance-card {
    background: var(--pw-card-bg);
    border: 1px solid var(--pw-border);
    border-radius: 10px;
    padding: 20px;
    min-width: 200px;
    flex: 1;
}

.balance-card-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--pw-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}

.balance-card-remaining {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pw-text);
    margin-bottom: 4px;
}

.balance-card-remaining small {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--pw-text-muted);
}

.balance-card-detail {
    font-size: 0.8125rem;
    color: var(--pw-text-muted);
    line-height: 1.6;
}

/* ── Approval Balance Display ────────────────────────────── */
.balance-accrued {
    color: #065f46;
}

.balance-used {
    color: #92400e;
}

.balance-remaining {
    color: var(--pw-primary-hover);
}

.balance-negative {
    color: var(--pw-danger);
    font-weight: 600;
}

.balance-none {
    color: var(--pw-text-placeholder);
}

/* ── Calendar ────────────────────────────────────────────── */
.cal-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--pw-border);
}

.cal-tab {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pw-text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.15s, border-color 0.15s;
}

.cal-tab:hover {
    color: var(--pw-text-secondary);
}

.cal-tab.active {
    color: var(--pw-primary-alt);
    border-bottom-color: var(--pw-primary-alt);
}

.cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cal-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: var(--pw-card-bg);
    border: 1px solid var(--pw-input-border);
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--pw-text-secondary);
    transition: background 0.15s;
}

.cal-nav-link:hover {
    background: var(--pw-table-header-bg);
}

.cal-range {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pw-text-secondary);
}

.cal-wrapper {
    overflow-x: auto;
    border: 1px solid var(--pw-border);
    border-radius: 8px;
    background: var(--pw-card-bg);
}

.cal-table {
    border-collapse: collapse;
    width: max-content;
    min-width: 100%;
}

.cal-table th,
.cal-table td {
    border: 1px solid var(--pw-border);
    text-align: center;
    font-size: 0.75rem;
    padding: 0;
    vertical-align: middle;
}

.cal-table th {
    background: var(--pw-table-header-bg);
    font-weight: 600;
    color: var(--pw-text-secondary);
}

/* Sticky employee column — background MUST be opaque for horizontal scroll */
.cal-table th.cal-employee-header,
.cal-table td.cal-employee-name {
    text-align: left;
    padding: 8px 12px;
    font-size: 0.8125rem;
    white-space: nowrap;
    position: sticky;
    left: 0;
    z-index: 1;
    background: var(--pw-card-bg);
    min-width: 160px;
}

.cal-table th.cal-employee-header {
    background: var(--pw-table-header-bg);
    z-index: 2;
}

.cal-date-header {
    width: 36px;
    min-width: 36px;
    max-width: 36px;
    padding: 6px 2px;
}

.cal-date-header .cal-day-abbr {
    display: block;
    font-size: 0.625rem;
    color: var(--pw-text-placeholder);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.cal-date-header .cal-day-num {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--pw-text);
}

.cal-cell {
    width: 36px;
    min-width: 36px;
    max-width: 36px;
    height: 36px;
}

.cal-weekend {
    background: var(--pw-body-bg) !important;
}

.cal-weekend .cal-day-num,
.cal-weekend .cal-day-abbr {
    color: var(--pw-text-placeholder) !important;
}

.cal-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.cal-dot-approved {
    background: #22c55e;
}

.cal-dot-pending {
    background: #f59e0b;
}

.cal-dot-rejected {
    background: #ef4444;
}

.cal-dot-cancelled {
    background: var(--pw-text-placeholder);
}

.cal-empty-state {
    padding: 40px 24px;
    text-align: center;
    color: var(--pw-text-muted);
    font-size: 0.875rem;
}

/* ── Allowance Form ──────────────────────────────────────── */
.allowance-card {
    background: var(--pw-card-bg);
    border: 1px solid var(--pw-border);
    border-radius: 8px;
    padding: 20px;
}

.allowance-card h2 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.allowance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

/* ── Date Row (leave request form) ───────────────────────── */
.date-row {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    align-items: start;
}

.date-row .date-col {
    flex: 1;
}

.date-row .hours-col {
    width: 100px;
}

/* ── Search Form ─────────────────────────────────────────── */
.search-form {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

/* ── Approval Actions ────────────────────────────────────── */
.approval-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

/* ── Subtitle (info text beneath headings) ───────────────── */
.page-subtitle {
    font-size: 0.875rem;
    color: var(--pw-text-muted);
    margin-bottom: 20px;
}

/* ── Pagination ──────────────────────────────────────────── */
.pagination-wrapper {
    margin-top: 16px;
}
