/* ==========================================================================
   KfH Dialyse Bestellsystem - Design System & Modern UI
   ========================================================================== */

:root {
    /* Color Palette - Medical Modern Teal / Blue */
    --primary-hue: 174;
    --primary: hsl(var(--primary-hue), 72%, 40%);
    --primary-hover: hsl(var(--primary-hue), 75%, 33%);
    --primary-light: hsl(var(--primary-hue), 80%, 95%);
    --primary-glow: hsla(var(--primary-hue), 72%, 40%, 0.25);
    
    --accent: #06b6d4;
    --accent-hover: #0891b2;
    
    --bg-body: #0f172a;
    --bg-card: #1e293b;
    --bg-card-hover: #24334a;
    --bg-input: #0f172a;
    --bg-hover: #334155;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --border-color: #334155;
    --border-focus: #0d9488;
    
    --success: #10b981;
    --success-bg: rgba(16, 185, 129, 0.15);
    --warning: #f59e0b;
    --warning-bg: rgba(245, 158, 11, 0.15);
    --danger: #ef4444;
    --danger-bg: rgba(239, 68, 68, 0.15);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(13, 148, 136, 0.2);
    
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
}

/* Light Theme Variables */
body.light-theme {
    --bg-body: #f1f5f9;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --bg-input: #f8fafc;
    --bg-hover: #e2e8f0;
    
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-dim: #94a3b8;
    
    --border-color: #cbd5e1;
    --border-focus: #0d9488;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.5;
    min-height: 100vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Layout Shell */
.app-shell {
    max-width: 1360px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Header */
.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    flex-wrap: wrap;
    gap: 1rem;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.brand-logo svg {
    width: 24px;
    height: 24px;
}

.brand-text h1 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.brand-text h1 span {
    color: var(--accent);
}

.brand-text .subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Tabs */
.nav-tabs {
    display: flex;
    background: var(--bg-input);
    padding: 4px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    gap: 4px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn svg {
    width: 18px;
    height: 18px;
}

.tab-btn:hover {
    color: var(--text-main);
    background: var(--bg-hover);
}

.tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 4px;
}

/* Header Metadata Info Card */
.info-card {
    background: linear-gradient(180deg, var(--bg-card), var(--bg-card-hover));
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.info-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.info-field.full-width {
    grid-column: 1 / -1;
}

.info-field label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* Calculation Helper Card */
.calc-helper-card {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(6, 182, 212, 0.05));
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.calc-helper-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
}

.calc-helper-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
    max-width: 680px;
}

.input-with-unit {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.input-with-unit input {
    padding: 0.5rem 2.8rem 0.5rem 0.75rem;
    width: 130px;
    font-weight: 700;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 0.95rem;
}

.input-with-unit input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.input-with-unit .unit-tag {
    position: absolute;
    right: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    pointer-events: none;
    font-weight: 600;
}

.inline-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0;
}

.col-3 { flex: 3; }

.auto-calc-badge {
    font-size: 0.7rem;
    color: var(--accent);
    display: block;
    margin-top: 2px;
    font-weight: 600;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon svg {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 18px;
    color: var(--text-dim);
    pointer-events: none;
}

.input-with-icon input {
    width: 100%;
    padding: 0.6rem 0.75rem 0.6rem 2.4rem;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Toolbar & Options */
.card-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.search-box {
    position: relative;
    min-width: 280px;
}

.search-box svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-dim);
}

.search-box input {
    width: 100%;
    padding: 0.55rem 0.75rem 0.55rem 2.4rem;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-size: 0.88rem;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.toolbar-options {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Toggle Switch */
.toggle-switch {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-muted);
    user-select: none;
}

.toggle-switch input {
    display: none;
}

.toggle-switch .slider {
    width: 38px;
    height: 20px;
    background: var(--border-color);
    border-radius: 20px;
    position: relative;
    transition: background 0.2s ease;
}

.toggle-switch .slider::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    top: 3px;
    left: 3px;
    transition: transform 0.2s ease;
}

.toggle-switch input:checked + .slider {
    background: var(--primary);
}

.toggle-switch input:checked + .slider::before {
    transform: translateX(18px);
}

/* Data Table */
.table-responsive {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    text-align: left;
}

.data-table th {
    background: var(--bg-input);
    color: var(--text-muted);
    font-weight: 600;
    padding: 0.8rem 0.9rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.data-table td {
    padding: 0.75rem 0.9rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.data-table tbody tr {
    transition: background 0.15s ease;
}

.data-table tbody tr:hover {
    background: var(--bg-card-hover);
}

.data-table tbody tr.row-needs-order {
    background: rgba(245, 158, 11, 0.05);
}

.data-table tbody tr.row-needs-order:hover {
    background: rgba(245, 158, 11, 0.1);
}

.data-table tbody tr.row-unselected {
    opacity: 0.55;
    cursor: pointer;
}

.data-table tbody tr.row-unselected:hover {
    opacity: 0.85;
    background: var(--bg-hover);
}

.item-select-checkbox, #select-all-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
    vertical-align: middle;
}

/* Material Description Cell */
.material-info {
    display: flex;
    flex-direction: column;
}

.material-title {
    font-weight: 600;
    color: var(--text-main);
}

.material-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Input Fields in Table */
.stock-input {
    width: 100%;
    max-width: 90px;
    padding: 0.5rem 0.6rem;
    background: var(--bg-input);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    transition: all 0.2s ease;
}

.stock-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-card);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Calculated Order Value Display */
.order-qty-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    min-width: 70px;
}

.order-qty-badge.has-order {
    background: var(--warning-bg);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.order-qty-badge.no-order {
    background: var(--bg-input);
    color: var(--text-dim);
    border: 1px solid var(--border-color);
}

.order-vpe-sub {
    font-size: 0.72rem;
    font-weight: 500;
    opacity: 0.85;
}

/* Status Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.badge-primary { background: var(--primary); color: #fff; }
.badge-success { background: var(--success-bg); color: var(--success); }
.badge-warning { background: var(--warning-bg); color: var(--warning); }
.badge-danger { background: var(--danger-bg); color: var(--danger); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: var(--bg-hover);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--border-color);
}

.btn-danger-outline {
    background: transparent;
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.btn-danger-outline:hover {
    background: var(--danger-bg);
}

.btn-sm {
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
}

.btn-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-icon:hover {
    background: var(--bg-hover);
}

/* Theme Toggle Icons */
.sun-icon { display: none; }
.moon-icon { display: block; }

body.light-theme .sun-icon { display: block; }
body.light-theme .moon-icon { display: none; }

/* Summary Footer */
.summary-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.summary-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.highlight-warning { color: var(--warning); }
.highlight-primary { color: var(--accent); }

/* Tab Panes */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Modal */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

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

.modal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 520px;
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.6rem;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 0.9rem;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-row {
    display: flex;
    gap: 0.75rem;
}

.col-4 { flex: 4; }
.col-8 { flex: 8; }

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.margin-top-md { margin-top: 1rem; }

/* Print Actions Bar */
.print-actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.actions-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
}

/* ==========================================================================
   KfH OFFICIAL DOCUMENT PRINT STYLES
   ========================================================================== */

.kfh-document-wrapper {
    background: #ffffff;
    color: #000000;
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.kfh-page {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px auto;
    background: #fff;
    color: #000;
    padding: 30px 40px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    position: relative;
    font-size: 11pt;
    line-height: 1.3;
}

/* Page Header Elements */
.kfh-doc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.kfh-sender-sub {
    font-size: 7.5pt;
    text-decoration: underline;
    margin-bottom: 15px;
}

.kfh-recipient-box {
    font-size: 10pt;
    line-height: 1.3;
    margin-bottom: 20px;
}

.kfh-logo-box {
    text-align: right;
    font-size: 9pt;
}

.kfh-logo-text {
    font-size: 14pt;
    font-weight: bold;
    color: #000;
}

.kfh-logo-sub {
    font-size: 9pt;
    color: #444;
}

.kfh-doc-title {
    font-size: 12pt;
    font-weight: bold;
    margin-bottom: 8px;
}

.kfh-doc-desc {
    font-size: 9pt;
    margin-bottom: 15px;
}

/* Document Key/Value Tables */
.kfh-meta-table {
    width: 100%;
    margin-bottom: 15px;
    font-size: 9pt;
}

.kfh-meta-table td {
    padding: 3px 0;
}

/* Form Items Table */
.kfh-items-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 9.5pt;
}

.kfh-items-table th {
    border-bottom: 2px solid #000;
    text-align: left;
    padding: 6px 4px;
    font-size: 9pt;
}

.kfh-items-table td {
    border-bottom: 1px solid #999;
    padding: 8px 4px;
    vertical-align: top;
}

.kfh-items-table tr {
    page-break-inside: avoid;
}

.kfh-handwritten {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 12pt;
}

.kfh-page-footer {
    margin-top: 30px;
    font-size: 7.5pt;
    color: #333;
    border-top: 1px solid #ccc;
    padding-top: 8px;
}

/* PRINT MEDIA SPECIFIC OVERRIDES */
@media print {
    body {
        background: #fff !important;
        color: #000 !important;
    }
    
    .app-header, .info-card, .nav-tabs, .print-actions-bar, .no-print, .modal-backdrop {
        display: none !important;
    }
    
    .app-shell, .app-content, .card {
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .tab-pane {
        display: block !important;
    }

    #order-form-tab, #maintenance-tab {
        display: none !important;
    }

    #print-tab {
        display: block !important;
    }

    .kfh-document-wrapper {
        padding: 0 !important;
        box-shadow: none !important;
    }

    .kfh-page {
        margin: 0 !important;
        border: none !important;
        padding: 20px 30px !important;
        page-break-after: always;
    }
}

/* ==========================================================================
   MOBILE & RESPONSIVE UX STYLES (Smartphones & Tablets)
   ========================================================================== */

@media (max-width: 768px) {
    .app-shell {
        padding: 0.5rem;
        gap: 0.85rem;
    }

    .app-header {
        padding: 0.85rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
    }

    .header-brand {
        justify-content: space-between;
        width: 100%;
    }

    .nav-tabs {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 4px;
    }

    .tab-btn {
        flex: 1 0 auto;
        white-space: nowrap;
        padding: 0.65rem 0.85rem;
        font-size: 0.82rem;
        justify-content: center;
        min-height: 44px;
        scroll-snap-align: start;
    }

    .card {
        padding: 0.85rem;
        border-radius: var(--radius-md);
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .card-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .search-box {
        min-width: 100%;
        width: 100%;
    }

    .toolbar-options {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .toggle-switch {
        justify-content: space-between;
        background: var(--bg-input);
        padding: 0.6rem 0.8rem;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border-color);
    }

    .toolbar-options .btn {
        width: 100%;
        min-height: 44px;
        justify-content: center;
    }

    .summary-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    /* Prevent iOS Safari auto-zoom on input focus */
    input, select, textarea {
        font-size: 16px !important;
    }

    .stock-input {
        min-height: 44px;
        max-width: 90px;
        font-size: 1.15rem !important;
    }

    .item-select-checkbox, #select-all-checkbox {
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px;
    }

    .calc-helper-card {
        flex-direction: column;
        align-items: stretch;
    }

    .calc-helper-controls {
        width: 100%;
    }

    .inline-group {
        justify-content: space-between;
        width: 100%;
    }

    .modal-card {
        padding: 1.25rem;
        max-width: 95vw;
    }

    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .col-3, .col-4, .col-8 {
        width: 100%;
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    .data-table th, .data-table td {
        padding: 0.55rem 0.35rem;
        font-size: 0.78rem;
    }

    .order-qty-badge {
        min-width: 50px;
        padding: 0.25rem 0.35rem;
        font-size: 0.95rem;
    }

    .badge {
        padding: 0.25rem 0.4rem;
        font-size: 0.7rem;
    }
}
