/* ============================================================
   BRANDSCHUTZ APP - Dark-Red Glassmorphism Design System
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --bg-darkest: #0f0f0f;
    --bg-dark: #1a1a1a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --bg-glass: rgba(139, 0, 0, 0.1);
    --bg-glass-strong: rgba(139, 0, 0, 0.2);

    --accent: #cc0000;
    --accent-dark: #8b0000;
    --accent-light: #ff3333;

    --success: #00ff66;
    --success-dim: rgba(0, 255, 102, 0.15);
    --warning: #ffcc00;
    --warning-dim: rgba(255, 204, 0, 0.15);
    --danger: #ff4444;
    --danger-dim: rgba(255, 68, 68, 0.15);

    --text-primary: #e0e0e0;
    --text-secondary: #999;
    --text-muted: #666;

    --border: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(204, 0, 0, 0.3);

    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;

    --blur: blur(10px);

    --sidebar-width: 260px;
    --topbar-height: 60px;

    --shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-darkest);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

@media (hover: hover) and (pointer: fine) {
    a:hover { color: var(--accent); }
}

img { max-width: 100%; height: auto; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-darkest); }
::-webkit-scrollbar-thumb { background: var(--accent-dark); border-radius: 3px; }

/* --- Sidebar --- */
.sidebar {
    position: fixed;
    top: 0; left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: var(--blur);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: transform var(--transition);
}

.sidebar-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.sidebar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.sidebar-nav {
    flex: 1;
    padding: 12px 0;
    overflow-y: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all var(--transition);
    min-height: 44px;
    position: relative;
}

@media (hover: hover) and (pointer: fine) {
    .nav-item:hover {
        background: var(--bg-glass);
        color: var(--text-primary);
    }
}

.nav-item.active {
    background: var(--bg-glass-strong);
    color: var(--accent-light);
    border-right: 3px solid var(--accent);
}

.nav-icon { font-size: 1.2rem; width: 24px; text-align: center; }

.nav-badge {
    position: absolute;
    right: 16px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

.sidebar-footer {
    border-top: 1px solid var(--border);
    padding: 12px 0;
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
}

.user-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--accent-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.user-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.user-info strong { font-size: 0.85rem; color: var(--text-primary); }
.user-info small { font-size: 0.72rem; color: var(--text-muted); }

.nav-logout { color: var(--danger) !important; }

.sidebar-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
}
.sidebar-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* --- Main Content --- */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    transition: margin var(--transition);
}

.topbar {
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: var(--blur);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.topbar-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}
.hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.content-area {
    padding: 24px;
    max-width: 1400px;
}

/* --- Glass Card --- */
.card {
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

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

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    min-height: 44px;
    min-width: 44px;
    background: var(--bg-card);
    color: var(--text-primary);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-dark);
    border-color: var(--accent);
    color: #fff;
}

.btn-success {
    background: rgba(0, 255, 102, 0.1);
    border-color: rgba(0, 255, 102, 0.3);
    color: var(--success);
}

.btn-warning {
    background: rgba(255, 204, 0, 0.1);
    border-color: rgba(255, 204, 0, 0.3);
    color: var(--warning);
}

.btn-danger {
    background: rgba(255, 68, 68, 0.1);
    border-color: rgba(255, 68, 68, 0.3);
    color: var(--danger);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.8rem;
    min-height: 36px;
}

.btn-icon {
    padding: 8px;
    min-width: 44px;
}

@media (hover: hover) and (pointer: fine) {
    .btn:hover { background: var(--bg-card-hover); transform: translateY(-1px); }
    .btn-primary:hover { background: var(--accent); }
    .btn-success:hover { background: rgba(0, 255, 102, 0.2); }
    .btn-warning:hover { background: rgba(255, 204, 0, 0.2); }
    .btn-danger:hover { background: rgba(255, 68, 68, 0.2); }
}

/* --- Forms --- */
.form-group {
    margin-bottom: 16px;
}

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

.form-control {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: border-color var(--transition);
    min-height: 44px;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.15);
}

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

select.form-control option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    cursor: pointer;
}

.form-check input[type="checkbox"] {
    width: 20px; height: 20px;
    accent-color: var(--accent);
    cursor: pointer;
}

/* --- Tables --- */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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

.table th, .table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.table th {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.table td { color: var(--text-primary); }

@media (hover: hover) and (pointer: fine) {
    .table tbody tr:hover { background: var(--bg-card-hover); }
}

/* --- Badges --- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.badge-draft { background: var(--warning-dim); color: var(--warning); }
.badge-completed { background: var(--success-dim); color: var(--success); }
.badge-sent { background: rgba(100, 149, 237, 0.15); color: #6495ed; }
.badge-rot { background: var(--danger-dim); color: var(--danger); }
.badge-orange { background: rgba(255, 165, 0, 0.15); color: #ffa500; }
.badge-gelb { background: var(--warning-dim); color: var(--warning); }
.badge-gruen { background: var(--success-dim); color: var(--success); }
.badge-alt { background: rgba(100, 100, 100, 0.3); color: #aaa; font-size: 0.65rem; }
.badge-neu { background: rgba(0, 255, 102, 0.2); color: var(--success); font-size: 0.65rem; }

/* --- Flash Messages --- */
.flash {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    animation: flashIn 0.4s ease;
}

.flash-success {
    background: var(--success-dim);
    color: var(--success);
    border: 1px solid rgba(0, 255, 102, 0.2);
}

.flash-error {
    background: var(--danger-dim);
    color: var(--danger);
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.flash-warning {
    background: var(--warning-dim);
    color: var(--warning);
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.flash-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.3rem;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* --- Modal --- */
.modal-backdrop {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
}

.modal-backdrop.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: transform var(--transition);
}

.modal-backdrop.active .modal {
    transform: scale(1);
}

.modal-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* --- Loading Overlay --- */
.loading-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
}

.loading-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    animation: loadingSlide 1.2s ease-in-out infinite;
}

@keyframes loadingSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

.loading-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- Floating Action Button & Drawer --- */
.fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-dark);
    border: 1px solid var(--accent);
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.4);
    z-index: 500;
    transition: all var(--transition);
}

@media (hover: hover) and (pointer: fine) {
    .fab:hover { transform: scale(1.1); background: var(--accent); }
}

.filter-drawer {
    position: fixed;
    top: 0; right: -340px;
    width: 320px;
    height: 100vh;
    background: rgba(20, 20, 20, 0.97);
    backdrop-filter: var(--blur);
    border-left: 1px solid var(--border);
    z-index: 1500;
    padding: 24px;
    overflow-y: auto;
    transition: right var(--transition);
}

.filter-drawer.active {
    right: 0;
}

.filter-backdrop {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1400;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
}

.filter-backdrop.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.filter-drawer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* --- Ampel (Traffic Light) Dots --- */
.ampel {
    width: 12px; height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.ampel-rot { background: var(--danger); box-shadow: 0 0 8px var(--danger); }
.ampel-orange { background: #ffa500; box-shadow: 0 0 8px #ffa500; }
.ampel-gelb { background: var(--warning); box-shadow: 0 0 8px var(--warning); }
.ampel-gruen { background: var(--success); box-shadow: 0 0 8px var(--success); }

/* --- Chat Bubbles --- */
.chat-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    max-height: 60vh;
    overflow-y: auto;
}

.chat-bubble {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
}

.chat-bubble-own {
    align-self: flex-end;
    background: var(--bg-glass-strong);
    border: 1px solid var(--border-accent);
    border-bottom-right-radius: 4px;
}

.chat-bubble-other {
    align-self: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
}

.chat-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.chat-image {
    max-width: 250px;
    border-radius: var(--radius-sm);
    margin-top: 8px;
    cursor: pointer;
}

/* --- Thumbnail Grid (Inspections) --- */
.thumb-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.thumb-item {
    position: relative;
    width: 80px; height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
}

.thumb-item img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.thumb-remove {
    position: absolute;
    top: 2px; right: 2px;
    width: 22px; height: 22px;
    background: rgba(0,0,0,0.7);
    color: var(--danger);
    border: none;
    border-radius: 50%;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-badge {
    position: absolute;
    bottom: 2px; left: 2px;
}

/* --- Accordion (Inspection) --- */
.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    cursor: pointer;
    min-height: 44px;
    gap: 8px;
}

.accordion-header.parent-header {
    background: rgba(139, 0, 0, 0.08);
    font-weight: 600;
}

.accordion-body {
    padding: 0 16px 16px;
}

.accordion-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 6px 10px;
    font-size: 0.78rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    min-height: 36px;
    transition: all var(--transition);
}

.action-btn.highlight {
    border-color: var(--warning);
    color: var(--warning);
    box-shadow: 0 0 8px rgba(255, 204, 0, 0.2);
}

/* --- Sortable ghost --- */
.sortable-ghost {
    opacity: 0.4;
    background: var(--bg-glass-strong) !important;
}

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

/* --- Empty state --- */
.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-muted);
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

/* --- Stat Cards --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-light);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* --- Calendar grid --- */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.calendar-card {
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
}

.calendar-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

/* --- Auth pages --- */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--bg-darkest);
}

.auth-card {
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}

.auth-logo {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 8px;
}

.auth-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.auth-subtitle {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.open {
        transform: translateX(0);
    }
    .sidebar-close {
        display: flex;
    }
    .main-content {
        margin-left: 0;
    }
    .hamburger {
        display: flex;
    }
    .content-area {
        padding: 16px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .card {
        padding: 16px;
    }
    .filter-drawer {
        width: 85%;
        right: -85%;
    }
    .table th, .table td {
        padding: 10px 12px;
        font-size: 0.82rem;
    }
    .chat-bubble { max-width: 85%; }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stat-card { padding: 14px; }
    .stat-value { font-size: 1.5rem; }
    .modal { padding: 20px; }
}

/* --- Send Modal --- */
.send-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.send-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    min-height: 56px;
    transition: all var(--transition);
}

@media (hover: hover) and (pointer: fine) {
    .send-option:hover {
        background: var(--bg-glass);
        border-color: var(--accent);
    }
}

.send-option-icon { font-size: 1.5rem; }
.send-option-label { font-size: 0.95rem; color: var(--text-primary); }

/* --- Utility --- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.d-flex { display: flex; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-100 { width: 100%; }
.hidden { display: none !important; }
