:root {
    --primary: #E02440;
    --primary-dark: #BE123C;
    --bg-main: #F5F6F8;
    --card-bg: #FFFFFF;
    --text-main: #2D3748;
    --text-soft: #718096;
    --border: #E5E7EB;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Prompt', sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* HEADER */
.top-header {
    background: var(--primary);
    color: white;
    padding: 20px 80px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-logo {
    width: 50px; height: 50px;
    background: #FFFFFF;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
}

.header-logo svg { width: 28px; height: 28px; }

.header-title h1 { font-size: 28px; font-weight: 700; line-height: 1.2; }
.header-title p { font-size: 15px; opacity: .8; }

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.date-badge {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    padding: 8px 18px;
    border-radius: 22px;
    font-size: 14px;
    display: flex; align-items: center; gap: 8px;
    color: white;
}

.period-select {
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 13px;
    color: var(--primary);
    cursor: pointer;
    display: flex; align-items: center; gap: 6px;
    font-weight: 500;
}

#app {
    flex: 1;
}

/* TOP NAV */
.top-nav {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    display: flex;
    justify-content: space-evenly;
    overflow-x: auto;
    padding: 0;
    width: 96%;
    margin: -18px auto 0;
    position: relative;
    z-index: 10;
}

.top-nav::-webkit-scrollbar { display: none; }

.nav-tab {
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    border: none;
    background: none;
    cursor: pointer;
    color: #555;
    border-bottom: 3px solid transparent;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}

.nav-tab:hover { color: var(--primary); }

.nav-tab.active {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
}

/* CARDS */
.card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.summary-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 12px 0 0;
}

.summary-card {
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 24px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.summary-icon {
    width: 68px; height: 68px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.summary-icon svg { width: 34px; height: 34px; }

.summary-icon.red { background: #FEE2E2; color: var(--primary); }
.summary-icon.blue { background: #DBEAFE; color: #2563EB; }
.summary-icon.green { background: #D1FAE5; color: #059669; }
.summary-icon.orange { background: #FEF3C7; color: #D97706; }

.summary-info p { font-size: 16px; color: var(--text-soft); margin-bottom: 4px; }
.summary-info .value { font-size: 40px; font-weight: 800; color: var(--primary); margin: 4px 0; }
.summary-info .value.blue { color: #2563EB; }
.summary-info .value.green { color: #059669; }
.summary-info .value.orange { color: #D97706; }

.summary-info .compare { font-size: 14px; color: #999; margin-top: 4px; }
.summary-info .compare .up { color: #059669; font-weight: 600; }
.summary-info .compare .down { color: var(--primary); font-weight: 600; }

/* MAIN GRID */
#app, .main-content {
    flex: 1;
    padding: 10px 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Remove double padding when main-content is inside app (for Dashboard SPA) */
#app .main-content {
    padding-left: 0;
    padding-right: 0;
}

.row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.row-3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.card-header h3 { font-size: 16px; font-weight: 700; }

.btn-view-all {
    background: var(--primary);
    color: white;
    border: 1px solid var(--primary);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-view-all:hover {
    background: white;
    color: var(--primary);
}

.select-sm {
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 12px;
    font-family: 'Prompt', sans-serif;
    color: #555;
}

/* TABLES */
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th {
    text-align: left;
    padding: 14px 10px;
    background: #F9FAFB;
    color: var(--text-soft);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}
.data-table td {
    padding: 14px 10px;
    border-bottom: 1px solid #F3F4F6;
}
.data-table tr:hover { background: #FFFBFB; }
.data-table .amount { color: var(--primary); font-weight: 700; }

/* CHART LEGEND */
.chart-legends {
    display: flex;
    justify-content: center;
    gap: 32px;
    font-size: 13px;
    margin-bottom: 12px;
    color: #666;
    font-weight: 500;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-dot {
    width: 28px; height: 8px;
    border-radius: 6px;
}

/* DONUT */
.donut-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.donut-legend { font-size: 13px; }
.donut-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

/* QUICK MENU */
.quick-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.quick-menu-btn {
    background: #FEF2F2;
    border-radius: 10px;
    padding: 10px 6px;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.quick-menu-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(224, 36, 64, 0.2);
}

.quick-menu-btn .qm-icon {
    width: 36px; height: 36px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 4px;
    transition: all 0.3s;
}

.quick-menu-btn:hover .qm-icon {
    background: white;
    color: var(--primary);
}

.quick-menu-btn p { 
    font-size: 12px; font-weight: 600; color: #333; 
    transition: all 0.3s;
}

.quick-menu-btn:hover p {
    color: white;
}

.nav-tab {
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    border: none;
    background: none;
    cursor: pointer;
    color: #555;
    border-bottom: 3px solid transparent;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.2s;
}

.nav-tab:hover { 
    color: var(--primary); 
    background: #FFF5F5;
}

.nav-tab.active {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
    background: #FFF5F5;
}

.fade { }
@keyframes fade {
    from { opacity: 1; }
    to { opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .summary-cards { grid-template-columns: repeat(2, 1fr); }
    .row-2col { grid-template-columns: 1fr; }
    .row-3col { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .summary-cards { grid-template-columns: 1fr; padding: 16px; }
    .main-content { padding: 16px; }
    .top-header { padding: 12px 16px; }
    .header-title h1 { font-size: 16px; }
    .quick-menu-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Vendors Page Specific */
.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFF5F5;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.title-decor {
    width: 6px;
    height: 24px;
    background: var(--primary);
    border-radius: 4px;
}
.section-title h2 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}
.stall-rates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.rate-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rate-card label {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}
.rate-input {
    display: flex;
    align-items: center;
    gap: 8px;
}
.rate-input .currency {
    color: #999;
    font-weight: 500;
    font-size: 16px;
}
.rate-input input {
    border: none;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    width: 100%;
    outline: none;
    background: transparent;
}
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.section-header-flex .section-title {
    margin-bottom: 0;
    width: auto;
    padding-right: 24px;
}
.search-box {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 16px;
    gap: 10px;
    width: 300px;
}
.search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
}
.search-box i {
    color: #999;
}

/* Vendors Table */
.vendors-table-card {
    padding: 0;
    overflow: hidden;
}
.vendors-table {
    width: 100%;
    border-collapse: collapse;
}
.vendors-table th {
    background: #F9FAFB;
    text-align: left;
    padding: 16px 24px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}
.vendors-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #F3F4F6;
    vertical-align: middle;
}
.badge-stall {
    display: inline-block;
    background: #E02440;
    color: white;
    padding: 6px 14px;
    border-radius: 16px;
    font-weight: 500;
    font-size: 13px;
}
.v-name {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    margin-bottom: 4px;
}
.v-type {
    font-size: 12px;
    color: #888;
}
.btn-check {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #e5e7eb;
    color: #9ca3af;
    transition: all 0.2s;
}
.btn-check.checked {
    background: #10B981;
    color: white;
}
.amount-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}
.amount-input-group .currency {
    color: #999;
    font-size: 14px;
    font-weight: 400;
}
.amount-input-group input {
    border: none;
    border-bottom: 1px solid #E5E7EB;
    width: 80px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    padding: 4px;
    outline: none;
    background: transparent;
}
.amount-input-group input:focus {
    border-bottom-color: var(--primary);
}
.badge-status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 400;
}
.badge-status.paid {
    background: #D1FAE5;
    color: #059669;
}
.badge-status.unpaid {
    background: #FEF3C7;
    color: #D97706;
}

.btn-confirm-save {
    background: #E02440;
    color: white;
    border: 2px solid #E02440;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Prompt', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(224, 36, 64, 0.2);
    transition: all 0.2s;
}

.btn-confirm-save:hover {
    background: white;
    color: #E02440;
    box-shadow: 0 6px 16px rgba(224, 36, 64, 0.3);
    transform: translateY(-2px);
}

/* Expenses Page Specific */
.expenses-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}
.expenses-title h2 {
    font-size: 24px;
    font-weight: 600;
    color: #E02440;
    margin-bottom: 4px;
}
.expenses-title p {
    font-size: 11px;
    font-weight: 500;
    color: #9CA3AF;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.expenses-summary {
    display: flex;
    gap: 12px;
}
.expense-sum-box {
    padding: 12px 24px;
    border-radius: 12px;
    text-align: center;
}
.expense-sum-box.blue {
    background: #EFF6FF;
}
.expense-sum-box.blue .es-label {
    color: #3B82F6;
}
.expense-sum-box.blue .es-value {
    color: #1D4ED8;
}
.expense-sum-box.red {
    background: #FEF2F2;
}
.expense-sum-box.red .es-label {
    color: #E02440;
}
.expense-sum-box.red .es-value {
    color: #E02440;
}
.es-label {
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 4px;
}
.es-value {
    font-size: 20px;
    font-weight: 600;
}

.expenses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
}
.expense-col-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}
.expense-col-header.red {
    background: #E02440;
    color: white;
}
.expense-col-header.dark {
    background: #E02440;
    color: white;
}
.expense-col-header .col-num {
    background: white;
    color: #111;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}
.expense-col-header h3 {
    font-size: 16px;
    font-weight: 500;
}

.expense-item-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.expense-item-list.scrollable {
    max-height: 440px;
    overflow-y: auto;
    padding-right: 8px;
}
.expense-item-list.scrollable::-webkit-scrollbar {
    width: 6px;
}
.expense-item-list.scrollable::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
.expense-item {
    background: #F9FAFB;
    border: 1px solid #F3F4F6;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.expense-item .ei-name {
    font-size: 13px;
    font-weight: 400;
    color: #4B5563;
}
.expense-item .ei-input {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.expense-item .ei-input input {
    width: 60px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #D1D5DB;
    text-align: right;
    font-size: 16px;
    font-weight: 500;
    color: #E02440;
    outline: none;
    padding-bottom: 2px;
}
.expense-item .ei-input input:focus {
    border-bottom-color: #E02440;
}
.expense-item .ei-input .unit {
    font-size: 12px;
    color: #9CA3AF;
    font-weight: 400;
}

.expenses-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: 20px;
}
.ef-total {
    display: flex;
    flex-direction: column;
}
.ef-total label {
    font-size: 13px;
    font-weight: 400;
    color: #6B7280;
}
.ef-total .total-val {
    font-size: 36px;
    font-weight: 600;
    color: #DC2626;
    line-height: 1;
}
.btn-save-expenses {
    background: #E02440;
    color: white;
    border: 2px solid #E02440;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Prompt', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(224, 36, 64, 0.2);
    transition: all 0.2s;
}
.btn-save-expenses:hover {
    background: white;
    color: #E02440;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(224, 36, 64, 0.3);
}

/* Vendor Data Form */
.registration-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto 30px auto;
}
.rc-header {
    background: #E02440;
    padding: 24px 32px;
    color: white;
}
.rc-header-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}
.rc-header-subtitle {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.8;
}
.rc-body {
    padding: 32px;
}
.rc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.rc-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rc-form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #6B7280;
}
.rc-form-group input, .rc-form-group select {
    padding: 14px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: #F9FAFB;
    font-family: 'Prompt', sans-serif;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
}
.rc-form-group input:focus, .rc-form-group select:focus {
    border-color: #E02440;
    background: white;
    box-shadow: 0 0 0 3px rgba(224,36,64,0.1);
}
.rc-footer {
    padding: 0 32px 32px;
    text-align: center;
}
.btn-submit-registration {
    background: #E02440;
    color: white;
    border: 2px solid #E02440;
    padding: 14px 48px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Prompt', sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(224, 36, 64, 0.2);
    transition: all 0.2s;
}
.btn-submit-registration:hover {
    background: white;
    color: #E02440;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(224, 36, 64, 0.3);
}

/* Global Table Action Buttons Hover (Edit/Delete) */
.vendors-table td button {
    transition: all 0.2s;
    cursor: pointer;
}
.vendors-table td button:hover {
    transform: scale(1.1);
}
.vendors-table td button i[data-lucide="edit-2"]:parent, 
.vendors-table td button:has(i[data-lucide="edit-2"]):hover {
    background: #2563EB !important;
    color: white !important;
    border-color: #2563EB !important;
}
.vendors-table td button:has(i[data-lucide="trash-2"]):hover {
    background: #DC2626 !important;
    color: white !important;
    border-color: #DC2626 !important;
}

/* FOOTER FIX */
.site-footer {
    text-align: center;
    padding: 24px;
    font-size: 13px;
    color: #718096;
    border-top: 1px solid var(--border);
    background: white;
    margin-top: auto;
    width: 100%;
    position: relative;
    z-index: 5;
}

/* SLIP MODAL POPUP */
.slip-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}
.slip-modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    cursor: default;
    transition: transform 0.3s ease;
}
.slip-modal.active {
    display: flex !important;
}
.slip-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* CLEAN BUTTON STYLES FOR EXPENSES */
.btn-save-expenses {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: none;
    transition: all 0.3s ease;
    color: white;
}

.btn-save-expenses i {
    color: inherit !important;
}

/* Expense Type (Red) */
.btn-save-expenses.type-expense {
    background: #E02440;
}
.btn-save-expenses.type-expense:hover {
    background: white;
    color: #E02440;
    border-color: #E02440;
}

/* Income Type (Green) */
.btn-save-expenses.type-income {
    background: #10B981;
}
.btn-save-expenses.type-income:hover {
    background: white;
    color: #10B981;
    border-color: #10B981;
}

 / *   A U T H   &   R B A C   S T Y L E S   * / 
 . n a v - t a b . n a v - f a d e d   { 
         o p a c i t y :   0 . 4 ; 
         c u r s o r :   n o t - a l l o w e d ; 
         f i l t e r :   g r a y s c a l e ( 1 ) ; 
         p o i n t e r - e v e n t s :   n o n e ; 
 } 
 . u s e r - p r o f i l e   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 2 p x ; 
         p a d d i n g :   6 p x   1 2 p x ; 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         m a r g i n - r i g h t :   1 5 p x ; 
 } 
 . l o g o u t - b t n   { 
         b a c k g r o u n d :   # E 0 2 4 4 0 ; 
         c o l o r :   w h i t e ; 
         b o r d e r :   n o n e ; 
         p a d d i n g :   8 p x   1 6 p x ; 
         b o r d e r - r a d i u s :   8 p x ; 
         f o n t - f a m i l y :   ' P r o m p t ' ; 
         f o n t - s i z e :   1 3 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c u r s o r :   p o i n t e r ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   6 p x ; 
         t r a n s i t i o n :   0 . 2 s ; 
 } 
 . l o g o u t - b t n : h o v e r   { 
         b a c k g r o u n d :   # C 8 1 E 3 7 ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 p x ) ; 
 } 
  
 

/* AUTH & RBAC STYLES */
.nav-tab.nav-faded {
    opacity: 0.4;
    cursor: not-allowed !important;
    filter: grayscale(0.8);
}
.nav-tab.nav-faded:hover {
    background: transparent !important;
    transform: none !important;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.user-info {
    display: flex;
    flex-direction: column;
    text-align: right;
    margin-right: 10px;
}
.user-name { font-weight: 600; font-size: 14px; color: #111827; }
.user-role { font-size: 11px; color: #6B7280; }
.logout-btn {
    background: #FEF2F2;
    color: #DC2626;
    border: 1px solid #FEE2E2;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: 'Prompt';
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}
.logout-btn:hover {
    background: #DC2626;
    color: white;
}
