/* ================================================================
   TravelControl — Design System
   ================================================================ */

/* ── 1. Imports & Variables ────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --primary-light: #eef2ff;

    --success: #10b981;
    --success-hover: #059669;
    --success-light: #ecfdf5;

    --danger: #ef4444;
    --danger-hover: #dc2626;
    --danger-light: #fef2f2;

    --warning: #f59e0b;
    --warning-hover: #d97706;
    --warning-light: #fffbeb;

    --background: #f8fafc;
    --surface: #ffffff;
    --surface-glass: rgba(255, 255, 255, 0.8);

    --text: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    --border: #e2e8f0;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --sidebar-width: 260px;

    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;

    --input-height: 34px;

}


/* ── 2. Reset & Base ──────────────────────────────────────────── */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: var(--text);
}

button {
    all: unset;
    cursor: pointer;
}


/* ── 3. Layout ────────────────────────────────────────────────── */

.layout {
    display: flex;
    min-height: 100vh;
}

.content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    transition: margin-left 0.3s ease;
}


/* ── 4. Sidebar ───────────────────────────────────────────────── */

.sidebar {
    width: var(--sidebar-width);
    background: var(--surface);
    border-right: 1px solid var(--border);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.sidebar h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.75rem;
    text-decoration: none;
    font-size: medium;
    color: var(--text-muted);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 0.5rem;
}

.sidebar nav p.nav-section {
    text-decoration: none;
    color: var(--primary);
    font-weight: 650;
    font-size: small;
    margin-bottom: 0.5rem;
}

.sidebar nav a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.sidebar nav a.active {
    background: var(--primary);
    color: white;
}

/* Sidebar Toggle Button (Mobile Only) */
.sidebar-toggle {
    display: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    color: var(--text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.sidebar-toggle:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Sidebar Overlay (Mobile Only) */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 40;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
}


/* ── 5. Navbar ────────────────────────────────────────────────── */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.navbar-left h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}


/* ── 6. Cards ─────────────────────────────────────────────────── */

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    background: var(--surface-glass);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}


/* ── 7. Dialog / Modal ────────────────────────────────────────── */

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -48%) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    padding: 0;
    max-width: 850px;
    width: 90%;
    max-height: 85vh;
    background: var(--surface);
    overflow: hidden;
    animation: fadeInScale 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

dialog::backdrop {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-header {
    padding: 1.5rem 2rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(85vh - 140px);
    /* Adjust based on header and footer */
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

.modal-footer {
    padding: 1.25rem 2rem;
    background: var(--background);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

.btn-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.2s ease;
    font-size: 1.5rem;
    line-height: 1;
}

.btn-close:hover {
    background: var(--danger-light);
    color: var(--danger);
}

/* ── 8. Forms ─────────────────────────────────────────────────── */

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

.form-grid-3-1 {
    display: grid;
    grid-template-columns: minmax(120px, 3fr) minmax(40px, 1fr);
    gap: 1rem;
    align-items: start;
}

.form-grid-1-1 {
    display: grid;
    grid-template-columns: minmax(100px, 1fr) minmax(100px, 1fr);
    gap: 1rem;
    align-items: start;
}

.no-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.col-full {
    grid-column: 1 / -1;
}

.form-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}

.form-section h3 {
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.form-field label {
    display: block;
    font-size: .78rem;
    color: var(--text-muted);
    margin-bottom: var(--space-1);
}

.form-field :is(input, select, textarea) {
    width: 100%;
    padding: var(--space-1) var(--space-2);
    font-size: .9rem;
    border: 1px solid var(--border);
    height: var(--input-height);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    transition: border-color .15s;
}

.form-field :is(input, select, textarea):focus-visible {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 20%, transparent);
}

.form-field textarea {
    resize: none;
}

/* Borda e sombra do input quando tem erro */
.form-field:has(.errorlist) :is(input, select, textarea) {
    border-color: #d9534f;
    box-shadow: 0 0 0 2px color-mix(in srgb, #d9534f 15%, transparent);
}

/* Estilo dos erros */
.form-field:has(.errorlist) .errorlist {
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: #d9534f;
    list-style: none;
    padding-left: 0;
}

.form-field:has(.errorlist) .errorlist li::before {
    content: "⚠️";
    margin-right: 0.25rem;
}

.checkbox-field label {
    display: block;
    font-size: .78rem;
    color: var(--text-muted);
}

.checkbox-field input[type="checkbox"] {
    display: none;
}

.checkbox-field label::after {
    content: "✖";
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
    width: 100%;
    font-size: .9rem;
    border: 1px solid var(--border);
    height: var(--input-height);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    transition: border-color .15s;
    cursor: pointer;
}

.checkbox-field:has(input[type="checkbox"]:checked) label::after {
    content: "✔️";
    background: var(--primary);
}

/* ── 9. Pagination ──────────────────────────────────────────────── */

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.pagination .step-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.pagination a,
.pagination .current {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text);
    background: var(--bg);
    transition: all 0.2s ease;
}

.pagination a:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
    color: var(--primary);
}

.pagination .current {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ── 10. Buttons ──────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .625rem 1.25rem;
    margin: 0.5rem;
    font: 600 0.9375rem/1 sans-serif;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--btn-bg);
    color: var(--btn-color);
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    background: var(--btn-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    --btn-bg: var(--primary);
    --btn-hover: var(--primary-hover);
    --btn-color: white;
}

.btn-success {
    --btn-bg: var(--success);
    --btn-hover: var(--success-hover);
    --btn-color: white;
}

.btn-warning {
    --btn-bg: var(--warning);
    --btn-hover: var(--warning-hover);
    --btn-color: white;
}

.btn-danger {
    --btn-bg: var(--danger);
    --btn-hover: var(--danger-hover);
    --btn-color: white;
}

.btn-outline {
    --btn-bg: white;
    --btn-hover: var(--background);
    --btn-color: var(--text);
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

.btn-back-link {
    position: absolute;
    inset: 5px auto auto 5px;
    aspect-ratio: 1;
    background: var(--primary);
    color: var(--text-light);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    padding: 0.5rem;
}

.btn-back-link:hover {
    background: var(--primary-hover);
    color: var(--text-light);
    transform: scale(1.1);
}


/* ── 11. Tables ───────────────────────────────────────────────── */

.table-container {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
    border-bottom: 1px solid var(--border);
}

.table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
}

.table tr:last-child td {
    border-bottom: none;
}

.table tr:hover {
    background: #f8fafc;
}


/* ── 12. Badges ───────────────────────────────────────────────── */

.badge {
    display: inline-flex;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-success {
    background: var(--success-light);
    color: var(--success);
}

.badge-danger {
    background: var(--danger-light);
    color: var(--danger);
}

.badge-warning {
    background: var(--warning-light);
    color: var(--warning);
}

.badge-primary {
    background: var(--primary-light);
    color: var(--primary);
}

/* ── 12.5. Info List ────────────────────────────────────────────── */

.info-list {
    list-style: none;
    padding: 0;
    width: 100%;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list strong {
    color: var(--text);
    font-weight: 500;
}

.info-list span {
    color: var(--text-muted);
    text-align: right;
}

/* ── 13. Utilities ────────────────────────────────────────────── */

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

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

.items-end {
    align-items: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.w-full {
    width: 100%;
}

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

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

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.mb-6 { margin-bottom: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.ml-4 { margin-left: 1rem; }

.space-y-4 > * + * { margin-top: 1rem; }

.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.bottom-0 { bottom: 0; }
.-bottom-2 { bottom: -0.5rem; }
.left-50 { left: 50%; }
.-translate-x-50 { transform: translateX(-50%); }

.cursor-pointer { cursor: pointer; }
.overflow-hidden { overflow: hidden; }

.ring-4 { --ring-offset-shadow: 0 0 0 0 #fff; --ring-shadow: 0 0 0 4px var(--ring-color); box-shadow: var(--ring-offset-shadow), var(--ring-shadow), var(--shadow-sm); }
.ring-primary-light { --ring-color: var(--primary-light); }
.ring-primary { --ring-color: var(--primary); }

.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }
.group:hover .group-hover-opacity-100 { opacity: 1; }

.bg-black-40 { background-color: rgba(0, 0, 0, 0.4); }

.shadow-lg { box-shadow: var(--shadow-lg); }

.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

.font-bold { font-weight: 700; }
.text-xl { font-size: 1.25rem; }
.text-xs { font-size: 0.75rem; }
.text-white { color: white; }

/* Grid Utilities */
.col-span-2 {
    grid-column: span 2;
}

.col-span-3 {
    grid-column: span 3;
}

/* ── 14. Responsive ───────────────────────────────────────────── */

/* ── 15. Toasts / Notifications ───────────────────────────────── */

.toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    width: 320px;
    padding: 1rem 1.25rem;
    background: var(--surface);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.toast-success { border-left-color: var(--success); color: var(--success); }
.toast-error { border-left-color: var(--danger); color: var(--danger); }
.toast-warning { border-left-color: var(--warning); color: var(--warning); }
.toast-info { border-left-color: var(--primary); color: var(--primary); }

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

.toast.fade-out {
    opacity: 0;
    transform: translateX(100%);
}

/* ── 16. Loading Spinner ────────────────────────────────────────── */

.loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.loader-overlay.active {
    display: flex;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-light);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 50;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .content {
        padding: 1rem;
    }

    .sidebar-toggle {
        display: flex;
    }

    .sidebar-overlay {
        display: block;
    }

    /* Tabelas com Scroll Horizontal Nativo no Mobile */
    .table-responsive {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 1rem;
    }

    /* Layouts e Grids de formulário viram 1 coluna no celular */
    .form-grid {
        grid-template-columns: 1fr;
    }

    .col-span-2,
    .col-span-3 {
        grid-column: span 1 !important;
    }
}

/* ── 15. Summary Cards ─────────────────────────────────────────── */

.summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.summary-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.summary-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.summary-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-income { background: var(--success-light); color: var(--success); }
.icon-expense { background: var(--danger-light); color: var(--danger); }
.icon-balance { background: var(--primary-light); color: var(--primary); }

.summary-info h3 {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.summary-info p {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

/* ── 16. Filter Section ────────────────────────────────────────── */

.filter-section {
    margin-bottom: 1.5rem;
}

.filters-container {
    display: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    animation: slideDown 0.3s ease-out;
}

.filters-container.active {
    display: block;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.filter-group-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    grid-column: 1 / -1;
}

.filter-field {
    min-width: 200px;
    flex: 1 1 0;
}

.filter-field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.625rem;
}

.filter-field select,
.filter-field input {
    width: 100%;
    padding: 0.625rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    color: var(--text);
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
}

.filter-field select:focus,
.filter-field input:focus {
    outline: none;
    border-color: var(--primary);
}

.filter-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 1px dashed var(--border);
    grid-column: 1 / -1;
}


/* ── 18. Empty State ───────────────────────────────────────────── */

.empty-state {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border);
}

.empty-state i {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Profile Image Styling */

.image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.profile-image-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-light);
    box-shadow: var(--shadow-md);
    background: var(--background);
}

.image-container {
    width: 100%;
    max-width: 400px;
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--background);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-image-container:hover .profile-image {
    transform: scale(1.05);
}

.image-container:hover .image {
    transform: scale(1.05);
}

.receipt-image {
    max-width: 100%;
    max-height: 400px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.proof-thumb {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.placeholder-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
}

.placeholder-icon {
    width: 64px;
    height: 64px;
    color: var(--primary);
}

