/* ========================================
   Cashback Tracker - Stylesheet
   ======================================== */

:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --bg: #f1f5f9;
    --card-bg: #ffffff;
    --text: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* ---- Inline SVG Icons ---- */
.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    display: inline-block;
    fill: currentColor;
    flex-shrink: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* ---- Navbar ---- */
.navbar {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}
.nav-link:hover { color: var(--primary); }

.nav-user {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ---- Container ---- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px;
}

.page-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    text-align: left;
}

/* ---- Auth Pages ---- */
.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.auth-container {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.auth-container h1 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 4px;
}

.auth-container h2 {
    text-align: center;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1rem;
}

.auth-link {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.auth-link a { color: var(--primary); }

/* ---- Forms ---- */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

/* ---- Buttons ---- */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}
.btn-primary:hover { background: var(--primary-hover); }

.btn-secondary {
    background: var(--border);
    color: var(--text);
}
.btn-secondary:hover { background: #cbd5e1; }

.btn-block { width: 100%; justify-content: center; }

/* ---- Alerts ---- */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* ---- Stats Bar ---- */
.stats-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--card-bg);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.stat-highlight .stat-value { color: var(--success); }

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ---- Filter Bar ---- */
.filter-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-bar .btn {
    padding: 8px 12px;
    font-size: 0.9rem;
    box-sizing: border-box;
    line-height: 1.2;
    height: 36px;
}

.filter-bar a.btn {
    text-decoration: none;
}

.filter-bar .btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.filter-search {
    flex: 1;
    min-width: 200px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    background: var(--card-bg);
}

.import-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding: 8px 12px;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

/* ---- Action Cards ---- */
.actions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 16px 20px;
    border-left: 4px solid var(--primary);
    transition: border-color 0.2s;
}

.action-card.action-expired {
    opacity: 0.6;
    border-left-color: var(--text-muted);
}

.action-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 12px;
}

.action-title-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.action-name {
    font-size: 1.05rem;
    font-weight: 600;
    word-break: break-word;
}

.action-brand {
    display: none;
}

.action-type-badge {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    white-space: nowrap;
    align-self: flex-start;
}

.type-gratis_testen { background: #dbeafe; color: #1e40af; }
.type-cashback { background: #fef3c7; color: #92400e; }
.type-geld_zurueck { background: #d1fae5; color: #065f46; }

/* ---- Brand Logo ---- */
.brand-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 110px;
}

.brand-logo-img {
    width: 100px;
    height: auto;
    max-height: 120px;
    border-radius: 8px;
    object-fit: contain;
    background: var(--bg);
    padding: 2px;
}

.brand-initials {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.action-refund {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--success);
    white-space: nowrap;
    flex-shrink: 0;
}

.action-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* ---- Meta Items ---- */
.action-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.meta-item {
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.meta-link {
    color: var(--primary);
    text-decoration: none;
}
.meta-link:hover { text-decoration: underline; }

.meta-urgent { color: var(--error); font-weight: 600; }

.badge-expired, .badge-urgent {
    font-size: 0.7rem;
    padding: 1px 6px;
    border-radius: 3px;
    font-weight: 600;
}
.badge-expired { background: #fee2e2; color: #b91c1c; }
.badge-urgent { background: #fef3c7; color: #92400e; }

.action-conditions {
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.action-conditions summary {
    cursor: pointer;
    font-weight: 500;
    color: var(--text);
}

.action-conditions p {
    margin-top: 6px;
    padding: 8px 12px;
    background: var(--bg);
    border-radius: var(--radius);
}

/* ---- Status Bar ---- */
.action-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.status-buttons {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.status-btn {
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--card-bg);
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.15s;
    color: var(--text);
}

.status-btn:hover {
    background: var(--bg);
    border-color: var(--text-muted);
}

.status-btn.status-active {
    color: white;
    border-color: transparent;
}

.btn-notes {
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--card-bg);
    cursor: pointer;
    font-size: 0.85rem;
}
.btn-notes:hover { background: var(--bg); }

/* ---- Action Tracking ---- */
.action-tracking {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-top: 8px;
    flex-wrap: wrap;
}

/* ---- Modal ---- */
.modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: var(--card-bg);
    padding: 24px;
    border-radius: var(--radius);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.modal-header h3 { font-size: 1.1rem; }

.modal-close {
    border: none;
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0;
}

.modal-dates .form-group { margin-bottom: 0; }

.modal-section-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
}

.modal-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.modal-contact .form-group { margin-bottom: 0; }

/* ---- User Image Upload ---- */
.user-images-section {
    margin-bottom: 16px;
}

.user-images-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.user-image-item {
    position: relative;
    width: 80px;
    height: 80px;
}

.user-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border);
    cursor: pointer;
}

.user-image-delete {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--error);
    color: white;
    border: 2px solid var(--card-bg);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.user-image-delete:hover { background: #dc2626; }

.upload-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.upload-btn {
    font-size: 0.85rem;
    padding: 6px 14px;
}

.upload-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ---- Multi-Kontakte ---- */
.modal-contact-multi {
    margin-bottom: 16px;
}

.contact-type-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 6px;
}

.contact-tab {
    padding: 5px 12px;
    border: 1px solid var(--border);
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.contact-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.contacts-list {
    min-height: 30px;
    margin-bottom: 8px;
}

.contacts-empty {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 8px;
    background: var(--bg);
    border-radius: 6px;
    margin-bottom: 4px;
    font-size: 0.85rem;
}

.contact-item small {
    color: var(--text-muted);
}

.contact-delete {
    background: var(--error);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-add-row {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-template-select {
    flex: 0 0 auto;
    min-width: 160px;
    padding: 6px 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg);
    color: var(--text);
    font-size: 0.8rem;
}

.contact-input {
    flex: 1;
    min-width: 140px;
    padding: 6px 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg);
    color: var(--text);
    font-size: 0.85rem;
}

.contact-label-input {
    flex: 0 0 120px;
    padding: 6px 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg);
    color: var(--text);
    font-size: 0.85rem;
}

.contact-template-actions {
    margin-top: 4px;
}

.contact-or {
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

/* ---- Settings ---- */
.settings-section {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    margin-bottom: 20px;
}

.settings-section h2 {
    margin-bottom: 8px;
}

.settings-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.template-group {
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.template-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.template-group h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.template-list {
    margin-bottom: 10px;
}

.template-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--bg);
    border-radius: 6px;
    margin-bottom: 4px;
}

.template-label {
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 100px;
}

.template-value {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: monospace;
}

.template-delete {
    background: var(--error);
    color: white;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.template-delete:hover { background: #dc2626; }

.template-add-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.template-add-row input {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg);
    color: var(--text);
    font-size: 0.85rem;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 2px 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-link:hover {
    text-decoration: underline;
}

.btn-small {
    font-size: 0.8rem;
    padding: 5px 10px;
}

.btn-active {
    background: var(--primary) !important;
    color: white !important;
}

/* ---- Ausblenden-Button (oben rechts in der Kachel) ---- */
.action-card {
    position: relative;
}

.btn-hide {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--text-muted);
    opacity: 0.3;
    transition: opacity 0.2s, color 0.2s;
    z-index: 1;
}

.btn-hide:hover {
    opacity: 1;
    color: var(--error);
}

/* ---- Admin ---- */
.admin-section {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
    margin-bottom: 20px;
}

.admin-section h3 {
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.admin-table th, .admin-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-success, .badge-running { background: #d1fae5; color: #065f46; }
.badge-error { background: #fee2e2; color: #b91c1c; }
.badge-admin { background: #dbeafe; color: #1e40af; }
.badge-user { background: #f1f5f9; color: #475569; }

.hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.hint code {
    background: var(--bg);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.8rem;
}

/* ---- Empty State ---- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state p { margin-bottom: 16px; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .container { padding: 12px 8px; }
    .stats-bar { gap: 6px; }
    .stat-card {
        min-width: calc(50% - 6px);
        padding: 10px 8px;
    }
    .stat-value { font-size: 1.1rem; }
    .stat-label { font-size: 0.7rem; }
    .filter-bar { flex-direction: column; gap: 6px; }
    .filter-search { min-width: 100%; }
    .filter-select { width: 100%; }
    .action-card { padding: 12px; }
    .action-header { gap: 8px; }
    .action-name { font-size: 0.95rem; }
    .action-desc { font-size: 0.85rem; }
    .action-refund { font-size: 0.95rem; }
    .status-buttons { gap: 3px; }
    .status-btn { font-size: 0.7rem; padding: 3px 6px; }
    .action-meta { flex-direction: column; gap: 4px; font-size: 0.8rem; }
    .modal-content { margin: 10px; max-width: 100%; }
    .modal-dates { grid-template-columns: 1fr; }
    .navbar { padding: 10px 12px; }
    .nav-brand { font-size: 1rem; }
    .nav-links { gap: 8px; }
    .nav-link, .nav-user { font-size: 0.8rem; }
    .admin-table { font-size: 0.8rem; }
    .admin-table th, .admin-table td { padding: 6px 8px; }
    .brand-logo-wrap { width: 80px; }
    .brand-logo-img { width: 72px; height: auto; max-height: 90px; }
    .brand-initials { width: 72px; height: 72px; }
    .action-type-badge { font-size: 0.65rem; }
    .contact-add-row { flex-direction: column; }
    .contact-template-select, .contact-input, .contact-label-input { width: 100%; flex: none; }
    .contact-type-tabs { flex-wrap: wrap; }
    .template-add-row { flex-direction: column; }
    .template-item { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .stats-bar { gap: 4px; }
    .stat-card { padding: 8px 6px; }
    .stat-value { font-size: 1rem; }
    .status-buttons { flex-wrap: wrap; }
    .status-btn { font-size: 0.65rem; padding: 2px 5px; }
    .action-status-bar { flex-direction: column; align-items: stretch; gap: 6px; }
    .btn-notes { text-align: center; }
    .action-tracking { flex-direction: column; gap: 4px; }
}

/* ---- Dark Mode ---- */
@media (prefers-color-scheme: dark) {
    :root {
        --primary: #3b82f6;
        --primary-hover: #2563eb;
        --bg: #0f172a;
        --card-bg: #1e293b;
        --text: #e2e8f0;
        --text-muted: #94a3b8;
        --border: #334155;
        --success: #34d399;
        --error: #f87171;
        --warning: #fbbf24;
        --info: #60a5fa;
        --shadow: 0 1px 3px rgba(0,0,0,0.3);
    }

    .type-gratis_testen { background: #1e3a5f; color: #93c5fd; }
    .type-cashback { background: #422006; color: #fcd34d; }
    .type-geld_zurueck { background: #064e3b; color: #6ee7b7; }

    .badge-expired { background: #450a0a; color: #fca5a5; }
    .badge-urgent { background: #451a03; color: #fcd34d; }
    .badge-success, .badge-running { background: #064e3b; color: #6ee7b7; }
    .badge-error { background: #450a0a; color: #fca5a5; }
    .badge-admin { background: #1e3a5f; color: #93c5fd; }
    .badge-user { background: #1e293b; color: #94a3b8; }

    .alert-error { background: #450a0a; color: #fca5a5; border-color: #7f1d1d; }
    .alert-success { background: #064e3b; color: #6ee7b7; border-color: #065f46; }
    .alert-info { background: #1e3a5f; color: #93c5fd; border-color: #1e40af; }

    .form-group input,
    .form-group textarea,
    .form-group select,
    .filter-search,
    .filter-select {
        background: #0f172a;
        color: #e2e8f0;
        border-color: #475569;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
    }

    .status-btn {
        background: #0f172a;
        color: #e2e8f0;
        border-color: #475569;
    }
    .status-btn:hover {
        background: #334155;
        border-color: #64748b;
    }

    .btn-notes {
        background: #0f172a;
        color: #e2e8f0;
        border-color: #475569;
    }
    .btn-notes:hover { background: #334155; }

    .btn-secondary {
        background: #334155;
        color: #e2e8f0;
    }
    .btn-secondary:hover { background: #475569; }

    .auth-container {
        box-shadow: 0 4px 24px rgba(0,0,0,0.4);
    }

    .modal-content {
        box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    }

    .modal {
        background: rgba(0,0,0,0.7);
    }

    .action-conditions p {
        background: #0f172a;
    }

    .hint code {
        background: #0f172a;
    }

    #notesText {
        background: #0f172a;
        color: #e2e8f0;
        border-color: #475569;
    }

    .user-image-item img {
        border-color: #475569;
    }

    .user-image-delete {
        border-color: #1e293b;
    }
}
