/* =============================================
   Adsyndicate Asset Management System
   Stylesheet — Salesforce-inspired Enterprise UI
   ============================================= */

/* -------------------------------------------
   CSS Custom Properties
   ------------------------------------------- */
:root {
    --brand-primary:     #0176D3;
    --brand-secondary:   #032D60;
    --sidebar-bg:        #16325C;
    --sidebar-hover-bg:  #0176D3;
    --sidebar-active-bg: #0176D3;
    --sidebar-text:      #B0C4DE;
    --sidebar-text-h:    #FFFFFF;
    --sidebar-width:     260px;
    --sidebar-collapsed:  64px;
    --header-height:     56px;
    --page-bg:           #F3F2F2;
    --card-bg:           #FFFFFF;
    --text-primary:      #3E3E3C;
    --text-secondary:    #706E6B;
    --text-muted:        #B0ADAB;
    --border-color:      #DDDBDA;
    --border-light:      #F3F2F2;
    --success:           #2E844A;
    --warning:           #FE9339;
    --danger:            #C23934;
    --info:              #0176D3;
    --shadow-sm:         0 1px 2px rgba(0,0,0,.08);
    --shadow-md:         0 2px 8px rgba(0,0,0,.12);
    --shadow-card:       0 2px 4px rgba(0,0,0,.1);
    --radius-sm:         4px;
    --radius-md:         8px;
    --radius-lg:         12px;
    --transition:        0.18s ease;
}

/* -------------------------------------------
   Base Reset
   ------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 14px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--page-bg);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--brand-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* -------------------------------------------
   Layout: Header
   ------------------------------------------- */
.app-header {
    position: fixed;
    top: 0; left: var(--sidebar-width); right: 0;
    height: var(--header-height);
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 900;
    box-shadow: var(--shadow-sm);
    transition: left var(--transition);
}

body.sidebar-collapsed .app-header { left: var(--sidebar-collapsed); }

.app-header-left { display: flex; align-items: center; gap: 0.75rem; }
.app-header-right { display: flex; align-items: center; gap: 1rem; }

.breadcrumb-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.sidebar-toggle {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    line-height: 1;
}
.sidebar-toggle:hover { background: var(--border-light); }

/* Header User Menu */
.header-user-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 4px 8px;
    border-radius: var(--radius-md);
    color: var(--text-primary) !important;
    text-decoration: none !important;
}
.header-user-btn:hover { background: var(--border-light); }
.header-user-btn::after { display: none; }

.user-avatar {
    width: 32px; height: 32px;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.user-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.user-role-pill {
    font-size: 0.7rem;
    font-weight: 600;
    background: #E8F4FD;
    color: var(--brand-primary);
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* -------------------------------------------
   Layout: Sidebar
   ------------------------------------------- */
.app-sidebar {
    position: fixed;
    top: 0; left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--sidebar-bg);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
}

/* Custom scrollbar for sidebar */
.app-sidebar::-webkit-scrollbar { width: 4px; }
.app-sidebar::-webkit-scrollbar-track { background: transparent; }
.app-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }

.sidebar-brand {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none !important;
}

.brand-logo {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.brand-icon {
    width: 36px; height: 36px;
    background: var(--brand-primary);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.brand-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.brand-name small {
    font-weight: 400;
    font-size: 0.7rem;
    color: var(--sidebar-text);
    display: block;
}

/* Sidebar Navigation */
.sidebar-nav {
    list-style: none;
    padding: 0.75rem 0;
    flex: 1;
}

.nav-heading {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,.35);
    text-transform: uppercase;
    padding: 1rem 1.25rem 0.3rem;
}

.sidebar-nav .nav-item { margin: 1px 0.5rem; }

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.75rem;
    color: var(--sidebar-text);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
    text-decoration: none !important;
    white-space: nowrap;
    position: relative;
}

.sidebar-nav .nav-link:hover {
    background: rgba(255,255,255,.08);
    color: var(--sidebar-text-h);
}

.sidebar-nav .nav-link.active {
    background: var(--sidebar-active-bg);
    color: var(--sidebar-text-h);
}

.nav-icon { font-size: 1rem; flex-shrink: 0; }

/* -------------------------------------------
   Layout: Main Content
   ------------------------------------------- */
.app-main {
    margin-left: var(--sidebar-width);
    padding-top: var(--header-height);
    min-height: 100vh;
    transition: margin-left var(--transition);
}

/* Collapsed sidebar (desktop) */
body.sidebar-collapsed .app-sidebar { width: var(--sidebar-collapsed); }
body.sidebar-collapsed .app-main   { margin-left: var(--sidebar-collapsed); }
body.sidebar-collapsed .nav-label,
body.sidebar-collapsed .nav-heading,
body.sidebar-collapsed .brand-logo  { display: none; }
body.sidebar-collapsed .sidebar-brand { justify-content: center; padding: 1rem 0; }
body.sidebar-collapsed .nav-link    { justify-content: center; padding: .6rem 0; }
body.sidebar-collapsed .nav-icon    { margin: 0; font-size: 1.25rem; }
body.sidebar-collapsed .app-sidebar { overflow: visible; }
body.sidebar-collapsed .nav-link:hover .nav-label {
    display: block;
    position: absolute;
    left: var(--sidebar-collapsed);
    background: var(--sidebar-bg);
    color: #fff;
    padding: .35rem .75rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    white-space: nowrap;
    z-index: 1100;
    pointer-events: none;
}

.content-area {
    padding: 1.5rem 1.75rem;
    max-width: 1600px;
}

/* -------------------------------------------
   Cards
   ------------------------------------------- */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.card-header {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 0.875rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-body { padding: 1.25rem; }

/* Metric Cards (Dashboard) */
.metric-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition: box-shadow var(--transition);
}
.metric-card:hover { box-shadow: var(--shadow-md); }

.metric-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}

.metric-card.primary::before   { background: var(--brand-primary); }
.metric-card.success::before   { background: var(--success); }
.metric-card.warning::before   { background: var(--warning); }
.metric-card.danger::before    { background: var(--danger); }
.metric-card.secondary::before { background: #706E6B; }

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.metric-icon {
    position: absolute;
    top: 1rem; right: 1.25rem;
    font-size: 1.75rem;
    opacity: 0.12;
    color: var(--text-primary);
}

/* -------------------------------------------
   Tables
   ------------------------------------------- */
.table-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }

.table-toolbar {
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.table-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.table-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.table-search .form-control {
    max-width: 240px;
    font-size: 0.82rem;
    height: 34px;
    border-color: var(--border-color);
}

.table { margin-bottom: 0; font-size: 0.82rem; }
.table thead th {
    background: #F8F8F8;
    color: var(--text-secondary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-color);
    border-top: none;
    padding: 0.65rem 1rem;
    white-space: nowrap;
}

.table tbody td {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
    color: var(--text-primary);
}

.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr:hover { background: #F8F9FF; }

/* -------------------------------------------
   Badges
   ------------------------------------------- */
.badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25em 0.6em;
    border-radius: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.badge-success   { background: #EBF6EF; color: var(--success); }
.badge-primary   { background: #E8F4FD; color: var(--brand-primary); }
.badge-warning   { background: #FFF4E5; color: #9B5B00; }
.badge-danger    { background: #FEF0EF; color: var(--danger); }
.badge-secondary { background: #F3F2F2; color: var(--text-secondary); }
.badge-info      { background: #E8F4FD; color: var(--info); }

/* -------------------------------------------
   Buttons
   ------------------------------------------- */
.btn {
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 1rem;
    border-width: 1px;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}
.btn-primary:hover { background: #015daa; border-color: #015daa; color: #fff; }

.btn-secondary {
    background: #fff;
    border-color: var(--border-color);
    color: var(--text-primary);
}
.btn-secondary:hover { background: #f3f2f2; border-color: #c2c0be; }

.btn-success    { background: var(--success); border-color: var(--success); color: #fff; }
.btn-success:hover { background: #236939; border-color: #236939; color: #fff; }

.btn-danger     { background: var(--danger); border-color: var(--danger); color: #fff; }
.btn-danger:hover { background: #9a2c29; border-color: #9a2c29; color: #fff; }

.btn-sm { padding: 0.3rem 0.65rem; font-size: 0.76rem; }
.btn-xs { padding: 0.18rem 0.5rem; font-size: 0.72rem; }

.btn-icon { padding: 0.4rem 0.5rem; }

/* Action buttons in tables */
.action-btns { display: flex; gap: 0.35rem; flex-wrap: nowrap; }

/* -------------------------------------------
   Forms
   ------------------------------------------- */
.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-control, .form-select {
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    padding: 0.5rem 0.75rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 2px rgba(1, 118, 211, 0.15);
    outline: none;
}

.form-control.is-invalid { border-color: var(--danger); }
.invalid-feedback { font-size: 0.76rem; color: var(--danger); }

.form-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    overflow: hidden;
}
.form-section-header {
    background: #F8F8F8;
    border-bottom: 1px solid var(--border-color);
    padding: 0.7rem 1.25rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-section-body { padding: 1.25rem; }

/* -------------------------------------------
   Page Header
   ------------------------------------------- */
.page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-header-left {}

.page-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 0.15rem;
}

.page-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.page-header-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: flex-start; }

/* -------------------------------------------
   Alerts
   ------------------------------------------- */
.alert {
    border-radius: var(--radius-sm);
    font-size: 0.83rem;
    padding: 0.65rem 1rem;
    margin-bottom: 1rem;
    border-width: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.alert-success { background: #EBF6EF; border-color: #A9D7B8; color: #1A4D2A; }
.alert-danger  { background: #FEF0EF; border-color: #F5B8B6; color: #7A1D1A; }
.alert-warning { background: #FFF4E5; border-color: #FDD49E; color: #6B3E00; }
.alert-info    { background: #E8F4FD; border-color: #A8CEED; color: #0A4270; }
.alert .btn-close { margin-left: auto; }

/* -------------------------------------------
   Modals
   ------------------------------------------- */
.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
    background: #F8F8F8;
}
.modal-title { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }
.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 0.75rem 1.25rem;
    background: #F8F8F8;
}

/* -------------------------------------------
   Dashboard Grid
   ------------------------------------------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 992px) {
    .dashboard-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------
   Approval Timeline
   ------------------------------------------- */
.approval-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.approval-timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 17px;
    width: 2px;
    background: var(--border-color);
    z-index: 0;
}
.timeline-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    position: relative;
    align-items: flex-start;
}
.timeline-icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    border: 2px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-muted);
}
.timeline-item.approved .timeline-icon { background: #EBF6EF; color: var(--success); border-color: var(--success); }
.timeline-item.rejected .timeline-icon { background: #FEF0EF; color: var(--danger);  border-color: var(--danger); }
.timeline-item.active   .timeline-icon { background: #FFF4E5; color: var(--warning); border-color: var(--warning); }
.timeline-item.pending  .timeline-icon { background: #F3F2F2; color: var(--text-muted); border-color: var(--border-color); }

/* keep legacy .timeline-dot classes working too */
.timeline-dot { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.85rem; position: relative; z-index: 1; }
.timeline-dot.approved  { background: #EBF6EF; color: var(--success); border: 2px solid var(--success); }
.timeline-dot.rejected  { background: #FEF0EF; color: var(--danger);  border: 2px solid var(--danger); }
.timeline-dot.pending   { background: #FFF4E5; color: var(--warning); border: 2px solid var(--warning); }
.timeline-dot.info      { background: #E8F4FD; color: var(--info);    border: 2px solid var(--info); }

.timeline-content { flex: 1; padding-top: 0.35rem; }
.timeline-title  { font-weight: 600; font-size: 0.875rem; color: var(--text-primary); }
.timeline-meta   { font-size: 0.78rem; color: var(--text-secondary); margin-top: 0.15rem; }
.timeline-comment { font-size: 0.8rem; color: var(--text-secondary); margin-top: 0.25rem; font-style: italic; }

/* -------------------------------------------
   Detail View
   ------------------------------------------- */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0;
}
.detail-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
}
.detail-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}
.detail-value {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* -------------------------------------------
   QR Code Print Page
   ------------------------------------------- */
.qr-print-card {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    max-width: 320px;
}
.qr-print-card .asset-code { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-top: 1rem; }
.qr-print-card .asset-name { font-size: 0.8rem; color: var(--text-secondary); }
.qr-print-card .org-name   { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.75rem; color: var(--brand-secondary); }

/* -------------------------------------------
   Depreciation Bar
   ------------------------------------------- */
.dep-bar-wrap { margin-top: 0.35rem; }
.dep-bar-bg {
    background: var(--border-light);
    border-radius: 20px;
    height: 6px;
    overflow: hidden;
}
.dep-bar-fill {
    height: 100%;
    border-radius: 20px;
    background: var(--brand-primary);
    transition: width 0.6s ease;
}
.dep-bar-fill.full { background: var(--success); }

/* -------------------------------------------
   Filter Row
   ------------------------------------------- */
.filter-row {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    background: #FAFAFA;
}
.filter-row .form-select { max-width: 160px; font-size: 0.8rem; height: 34px; padding: 0.3rem 0.65rem; }
.filter-row .form-control { max-width: 220px; font-size: 0.8rem; height: 34px; padding: 0.3rem 0.65rem; }

/* -------------------------------------------
   Mobile & Responsive
   ------------------------------------------- */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 999;
}

@media (max-width: 991.98px) {
    .app-sidebar {
        transform: translateX(calc(var(--sidebar-width) * -1));
    }
    .app-sidebar.open { transform: translateX(0); }
    .sidebar-overlay.open { display: block; }
    .app-header { left: 0; }
    .app-main   { margin-left: 0; }
    .content-area { padding: 1rem; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .page-header { flex-direction: column; }
}

@media (max-width: 575.98px) {
    .stats-grid { grid-template-columns: 1fr; }
    .table-toolbar { flex-direction: column; align-items: flex-start; }
    .filter-row { flex-direction: column; align-items: flex-start; }
    .filter-row .form-select,
    .filter-row .form-control { max-width: 100%; width: 100%; }
}

/* -------------------------------------------
   Print Styles
   ------------------------------------------- */
@media print {
    .app-sidebar, .app-header, .page-header-actions, .btn, .table-toolbar .btn,
    .sidebar-overlay, .alert .btn-close { display: none !important; }
    .app-main { margin-left: 0 !important; padding-top: 0 !important; }
    body { background: #fff; font-size: 11pt; }
    .card, .table-card, .form-section { box-shadow: none !important; border-color: #ccc !important; }
    .content-area { padding: 0 !important; }
}

/* -------------------------------------------
   Utilities
   ------------------------------------------- */
.text-primary-brand { color: var(--brand-primary) !important; }
.bg-page    { background: var(--page-bg); }
.fw-600     { font-weight: 600; }
.fw-700     { font-weight: 700; }
.fs-xs      { font-size: 0.73rem; }
.fs-sm      { font-size: 0.8rem; }
.separator  { border-top: 1px solid var(--border-color); margin: 1rem 0; }
.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-secondary);
}
.empty-state i { font-size: 2.5rem; opacity: 0.3; display: block; margin-bottom: 0.75rem; }
.empty-state p { font-size: 0.85rem; margin: 0; }

/* Login page */
.login-page { min-height: 100vh; background: var(--sidebar-bg); display: flex; align-items: center; justify-content: center; }
.login-card { background: var(--card-bg); border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,.3); width: 100%; max-width: 420px; padding: 2.5rem; }
.login-logo { text-align: center; margin-bottom: 2rem; }
.login-brand-logo { max-height: 90px; width: auto; margin-bottom: 0.75rem; }
.login-logo p  { font-size: 0.78rem; color: var(--text-secondary); }
.login-footer  { text-align: center; margin-top: 1.5rem; font-size: 0.75rem; color: var(--text-muted); }
