﻿/* ===========================================================
GLOBAL HTML SETTINGS
=========================================================== */

html {
    font-size: 14px;
    height: 100%;
}

@media(min-width:768px) {

    html {
        font-size: 16px;
    }
}

/* ===========================================================
BODY SETTINGS
=========================================================== */

body {
    font-family: "Segoe UI",Tahoma,Geneva,Verdana,sans-serif;
    background: #f4f6f9;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100%;
}

/* ===========================================================
BOOTSTRAP FOCUS FIX
=========================================================== */

.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 .1rem white, 0 0 0 .25rem #258cfb;
}


/* ===========================================================
TRACKPULSE LOGIN BACKGROUND
=========================================================== */
.login-bg {
    position: relative;
    background: url('/images/vehicle-bg.svg') center center / cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

    /* premium slow zoom effect */

    .login-bg::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('/images/vehicle-bg.svg') center center / cover no-repeat;
        animation: mapMove 35s ease-in-out infinite alternate;
        z-index: -1;
    }

@keyframes mapMove {

    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

/* OVERLAY GLASS */

.login-overlay {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient( rgba(255,255,255,.15), rgba(255,255,255,.25));
    backdrop-filter: blur(1px);
}

    /* NAVBAR TRANSPARENT */

    .login-overlay .navbar {
        background: rgba(255,255,255,.75) !important;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255,255,255,.4);
    }

/* HERO TEXT IMPROVE */

.hero-title {
    font-weight: 800;
    font-size: 48px;
    letter-spacing: -.5px;
}

.hero-desc {
    font-size: 18px;
    color: #444;
    max-width: 520px;
}

/* LOGIN CARD PREMIUM */

.login-card {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    box-shadow: 0 35px 80px rgba(0,0,0,.25);
    transition: .35s ease;
}

    .login-card:hover {
        transform: translateY(-8px);
    }

/* =========================================
LOGIN HEADER UPGRADE
========================================= */

.login-header {
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    /* glass effect */
    background: rgba(255,255,255,.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.4);
}

/* brand container */
.brand-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* icon */
.brand-icon {
    font-size: 22px;
}

/* TRACKPULSE highlight */
.brand-name {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient( 135deg, #6366f1, #22d3ee );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* demo button */
.demo-btn {
    border: none;
    border-radius: 25px;
    padding: 7px 22px;
    font-weight: 600;
    color: white;
    background: linear-gradient( 135deg, #6366f1, #22d3ee );
    transition: .3s;
}

    .demo-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,.25);
    }


/* ======================================
LOGIN CENTER ALIGN
====================================== */

.login-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LOGIN CARD CENTER */

.login-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

/* STORE BADGES BOTTOM RIGHT */

.store-badges {
    position: fixed;
    right: 40px;
    bottom: 90px; /* was 40px */

    display: flex;
    gap: 15px;
    z-index: 20;
}

    .store-badges img {
        height: 55px;
        transition: transform .3s ease, filter .3s;
        filter: drop-shadow( 0 8px 12px rgba(0,0,0,.2) );
    }

        .store-badges img:hover {
            transform: translateY(-6px) scale(1.05);
        }

/* ============================================
PREMIUM LOGIN NAVBAR
============================================ */

.login-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Glass Background */

    background: rgba(255,255,255,.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.4);
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

/* BRAND */

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 600;
}

/* TRACKPULSE HIGHLIGHT */

.brand-text {
    font-weight: 900;
    font-size: 24px;
    /* Gradient Text */

    background: linear-gradient( 135deg, #6366f1, #22d3ee );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===========================================================
SIDEBAR (AUTO COLLAPSE)
=========================================================== */

/* ===========================================================
SIDEBAR PREMIUM FLEET COLOR
=========================================================== */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 75px;
    /* NEW PREMIUM COLOR */

    background: linear-gradient( 180deg, #8fa0b5, #8192a6, #6e7f94 );
    color: white;
    transition: width .35s cubic-bezier(.4,0,.2,1);
    overflow-x: hidden;
    overflow-y: auto; /* Enable vertical scrolling */
    z-index: 1000;
    /* SOFT SHADOW */

    box-shadow: 12px 0 28px rgba(0,0,0,.18), inset -1px 0 rgba(255,255,255,.25);
    border-right: 1px solid rgba(255,255,255,.25);
}


    /* EXPAND */

    .sidebar:hover {
        width: 240px;
    }
    .sidebar .icon i {
        font-size: 22px;
        width: 28px;
        text-align: center;
    }

/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    font-size: 22px;
    font-weight: bold;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.logo-text {
    opacity: 0;
    transition: .3s;
}

.sidebar:hover .logo-text {
    opacity: 1;
}

/* MENU */

.menu {
    list-style: none;
    margin: 0;
    padding: 10px;
}

.sidebar a,
.sidebar button {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    padding: 14px;
    border-radius: 14px;
    border: none;
    background: none;
    text-decoration: none;
    cursor: pointer;
    transition: .25s;
    width: 100%;
    font-weight: 500;
    white-space: nowrap;
}

.icon {
    font-size: 20px;
    min-width: 30px;
    text-align: center;
}

.menu-text {
    opacity: 0;
    transition: .25s;
}

.sidebar:hover .menu-text {
    opacity: 1;
}

/* HOVER */

.sidebar a:hover,
.sidebar button:hover {
    transform: translateX(6px) scale(1.03);
    background: rgba(255,255,255,.25);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

/* ACTIVE */

.sidebar a.active {
    background: linear-gradient( 135deg, #22d3ee, #3b82f6 );
    box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

.admin-heading {
    font-size: 12px;
    opacity: .8;
    padding: 15px;
    letter-spacing: 1px;
}

/* ===========================================================
MAIN CONTENT (FIXED — NO GAP)
=========================================================== */

.main {
    margin-left: 75px;
    width: calc(100% - 75px);
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: margin-left .35s cubic-bezier(.4,0,.2,1), width .35s cubic-bezier(.4,0,.2,1);
}
    .main:has(.dashboard-full) {
        padding-left: 10px;
        padding-right: 10px;
    }

/* EXPAND MODE */

.sidebar:hover ~ .main {
    margin-left: 240px;
    width: calc(100% - 240px);
}


/* ===========================================================
FINAL PROFESSIONAL HEADER
=========================================================== */

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 25px;
    margin-bottom: 25px;
    border-radius: 14px;
    /* SOFT WHITE CARD */

    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

/* LEFT */

.topbar-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* WELCOME */

.welcome {
    font-size: 18px;
    color: #444;
}

.username {
    font-weight: bold;
    color: #4338ca;
    margin-left: 5px;
}

/* DATE */

.welcome-date {
    font-size: 13px;
    color: #888;
}

/* RIGHT */

.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* SEARCH */

.top-search {
    border-radius: 25px;
    border: 1px solid #ddd;
    padding: 8px 16px;
    width: 240px;
    transition: .25s;
}

    .top-search:focus {
        outline: none;
        border-color: #6366f1;
        box-shadow: 0 0 10px rgba(99,102,241,.3);
    }

/* PROFILE */

.profile-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
    background: linear-gradient( 135deg, #6366f1, #22d3ee );
    box-shadow: 0 6px 15px rgba(0,0,0,.2);
    flex-shrink: 0;
}


/* ===========================================================
CARDS
=========================================================== */

/* ============================================
DASHBOARD CARD ANIMATION
============================================ */

.dashboard-card {
    border-radius: 14px;
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    /* HOVER POPUP EFFECT */

    .dashboard-card:hover {
        transform: translateY(-8px) scale(1.03);
        /* POP OUT SHADOW */

        box-shadow: 0 18px 40px rgba(0,0,0,.25);
        z-index: 10;
    }

    /* LIGHT GLOW */

    .dashboard-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,.3), transparent );
        transition: .6s;
    }

    /* SHINE EFFECT */

    .dashboard-card:hover::after {
        left: 120%;
    }

/* INACTIVE CARD COLOR */

.card-total {
    background: linear-gradient( 135deg, #6366f1, #4338ca );
    color: white;
}

.card-active {
    background: linear-gradient( 135deg, #10b981, #047857 );
    color: white;
}

.card-alert {
    background: linear-gradient( 135deg, #f97316, #ea580c );
    color: white;
}

.card-idle {
    background: linear-gradient( 135deg, #facc15, #eab308 );
    color: white;
}

.card-stopped {
    background: linear-gradient( 135deg, #f43f5e, #9f1239 );
    color: white;
}

.card-offline {
    background: linear-gradient( 135deg, #6b7280, #374151 );
    color: white;
}

.card-inactive {
    background: linear-gradient( 135deg, #d8b4fe, #9333ea );
    color: white;
}

/* ===========================================================
TABLE
=========================================================== */

.table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

/* ===========================================================
BUTTON
=========================================================== */

.btn-primary {
    background: #0d6efd;
    border: none;
}

    .btn-primary:hover {
        background: #0b5ed7;
    }

/* ===========================================================
FOOTER
=========================================================== */

.footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 12px;
    margin-top: 40px;
}

/* ===========================================================
RESPONSIVE
=========================================================== */

@media(max-width:768px) {

    .sidebar {
        width: 200px;
    }

    .main {
        margin-left: 200px;
        width: calc(100% - 200px);
    }
}


/* ADMIN HEADING */

.admin-heading {
    padding: 15px 10px;
    position: relative;
}


/* divider hidden normally */

.admin-divider {
    display: none;
    height: 2px;
    background: rgba(255,255,255,.4);
    border-radius: 10px;
    margin: auto;
    width: 50%;
}



/* collapsed sidebar → show divider */

.sidebar:not(:hover) .admin-divider {
    display: block;
}



/* expanded → hide divider */

.sidebar:hover .admin-divider {
    display: none;
}

.footer {
    background: #000;
    color: #fff;
    width: 100%;
    font-size: 14px;
    margin-top: auto;
}

/* ===============================
ENTERPRISE FORM CARD
================================ */

.form-card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    border: 1px solid #e5e7eb;
    transition: .3s;
}

    /* hover lift */

    .form-card:hover {
        box-shadow: 0 18px 45px rgba(0,0,0,.12);
    }


/* ===============================
INPUT PROFESSIONAL LOOK
================================ */

.form-label {
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
    font-size: 14px;
}


.form-control,
.form-select {
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 10px 14px;
    transition: .25s;
}


    /* hover */

    .form-control:hover,
    .form-select:hover {
        border-color: #6366f1;
    }


    /* focus */

    .form-control:focus,
    .form-select:focus {
        border-color: #6366f1;
        box-shadow: 0 0 0 3px rgba(99,102,241,.15);
    }


/* ===============================
HEADER BAR
================================ */

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}


/* ===============================
BUTTON PREMIUM
================================ */

.btn-primary {
    border-radius: 10px;
    padding: 8px 18px;
    font-weight: 600;
    box-shadow: 0 5px 12px rgba(13,110,253,.25);
    transition: .25s;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(13,110,253,.35);
    }

.btn-secondary {
    border-radius: 10px;
    padding: 8px 18px;
}

.required::after {
    content: " *";
    color: red;
}

.form-section {
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #4338ca;
    border-left: 4px solid #6366f1;
    padding-left: 10px;
}

.form-card {
    animation: fadeInUp .35s ease;
}

@keyframes fadeInUp {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================
STICKY ENTERPRISE ACTION BAR
================================= */

.sticky-action-bar {
    position: sticky;
    top: 20px;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    margin-bottom: 20px;
}


/* subtle blur effect */

.sticky-action-bar {
    backdrop-filter: blur(6px);
}


    /* small enhancement */

    .sticky-action-bar strong {
        font-size: 18px;
        color: #4338ca;
    }

/* ===============================
SAVE BUTTON STATES
================================ */

/* disabled */

.save-disabled {
    opacity: .6;
    cursor: not-allowed;
    box-shadow: none !important;
}


/* ACTIVE GLOW */

.save-active {
    animation: saveGlow 1.2s infinite alternate;
}


@keyframes saveGlow {

    from {
        box-shadow: 0 0 0 rgba(99,102,241,.2);
    }

    to {
        box-shadow: 0 0 18px rgba(99,102,241,.55);
    }
}


.profile-card {
    padding: 25px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg,#6366f1,#22d3ee);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.profile-value {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.table thead th {
    font-weight: 600;
    font-size: 14px;
}

.table tbody tr:hover {
    background-color: #f3f6fb;
}


/* ======================================
DASHBOARD FULL WIDTH FORCE FIX
====================================== */

.main .dashboard-full {
    max-width: 100vw !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

    .dashboard-full .card {
        margin-left: 0;
        margin-right: 0;
    }

/* ==================================
PAGE WIDTH CONTROL SYSTEM
================================== */

/* Default pages centered */

.page-wrapper {
    padding-left: 20px;
    padding-right: 20px;
}

    /* Centered content pages */

    .page-wrapper .page-container {
        max-width: 1400px;
        margin: auto;
    }

/* ====================================
WIZARD TAB ACTION BAR (RIGHT ALIGN FIX)
==================================== */

.wizard-tab-action {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    padding: 10px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: flex-end; /* ⭐ RIGHT SIDE */

    align-items: center;
    gap: 10px;
}


.kpi-selected {
    border: 3px solid #ffffff;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255,255,255,0.6);
}

#paginationControls button {
    min-width: 40px;
}

#paginationInfo {
    white-space: nowrap;
    font-weight: 500;
}

.table-responsive {
    overflow-x: auto;
}

#rowsPerPage {
    border-radius: 8px;
    height: 32px;
    font-size: 14px;
    padding: 4px 10px;
}

    #rowsPerPage:focus {
        box-shadow: none !important;
        outline: none !important;
        border-color: #ced4da !important;
    }

/* ===== DASHBOARD LAYOUT ===== */

.live-dashboard {
    width: 100%;
}

.live-body {
    display: flex;
    height: 650px;
    background: white;
    border-radius: 10px;
}

/* GRID */

.live-grid {
    width: 35%;
    min-width: 350px;
    overflow: auto;
}

/* MAP */

.live-map {
    flex: 1;
}

#map {
    width: 100%;
    height: 100%;
}

/* TOGGLE BAR */

.grid-toggle {
    width: 35px;
    background: #f1f3f5;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* BUTTONS */

.toggle-btn {
    border: none;
    background: #b76a9a;
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    cursor: pointer;
}

    .toggle-btn:hover {
        background: #9d4b7d;
    }

/* COLLAPSE GRID */

.live-dashboard.grid-collapsed .live-grid {
    width: 0;
    min-width: 0;
    overflow: hidden;
}

/* COLLAPSE MAP */

.live-dashboard.map-collapsed .live-map {
    width: 0;
    overflow: hidden;
}

.live-dashboard.map-collapsed .live-grid {
    width: 100%;
}


/* ============================
LIVE DASHBOARD KPI SIZE REDUCE
============================ */

.dashboard-card .card-body {
    padding: 10px 14px; /* reduce height */
}

.dashboard-card h4 {
    font-size: 20px; /* slightly smaller number */
    margin: 4px 0 0 0;
}

.dashboard-card {
    min-height: 70px; /* keep consistent height */
    display: flex;
}

    .dashboard-card .card-body {
        display: flex;
        flex-direction: column;
    }


/* ===============================
   SIDEBAR SUBMENU
================================ */

.has-submenu { position: relative; }

.submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.submenu-arrow {
    margin-left: auto;
    font-size: 11px;
    transition: transform .25s;
}

.submenu-open .submenu-arrow {
    transform: rotate(180deg);
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.submenu-open .submenu {
    max-height: 200px;
}

.submenu li a {
    padding: 10px 14px 10px 52px !important;
    font-size: 13px;
    border-radius: 10px !important;
    gap: 10px !important;
}

.submenu li a .icon {
    font-size: 14px;
    min-width: 22px;
}

/* collapsed sidebar: hide submenu text, show on hover */
.sidebar:not(:hover) .submenu {
    max-height: 0 !important;
}

.sidebar:not(:hover) .submenu-arrow {
    display: none;
}


/* ===============================
   NOTIFICATION BELL (TOPBAR)
================================ */

.notif-wrap {
    position: relative;
}

.notif-bell {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    color: #4b5563;
    font-size: 18px;
}

.notif-bell:hover {
    background: #f0f4ff;
    color: #4f46e5;
}

.notif-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    animation: notifPulse 2s infinite;
}

@keyframes notifPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.notif-panel {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    width: 360px;
    max-height: 440px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,.15);
    border: 1px solid #e9ecef;
    z-index: 2000;
    overflow: hidden;
}

.notif-panel.open {
    display: block;
    animation: notifSlideIn .2s ease;
}

@keyframes notifSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e9ecef;
    font-weight: 700;
    font-size: 14px;
    color: #1a2332;
}

.notif-clear {
    background: none;
    border: none;
    color: #6366f1;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.notif-clear:hover {
    text-decoration: underline;
}

.notif-list {
    max-height: 380px;
    overflow-y: auto;
}

.notif-list::-webkit-scrollbar { width: 4px; }
.notif-list::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }

.notif-empty {
    padding: 40px 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 13px;
}

.notif-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f5f5f5;
    transition: .15s;
    cursor: default;
}

.notif-item:hover {
    background: #f8f9fa;
}

.notif-item.unread {
    background: #f0f4ff;
}

.notif-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.notif-icon.start {
    background: #dcfce7;
    color: #16a34a;
}

.notif-icon.stop {
    background: #fee2e2;
    color: #dc2626;
}

.notif-icon.overspeed {
    background: #fef3c7;
    color: #d97706;
}

.notif-body {
    flex: 1;
    min-width: 0;
}

.notif-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 2px;
}

.notif-desc {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

.notif-time {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 3px;
}


/* ===============================
   LEAFLET ATTRIBUTION (minimal)
================================ */

.leaflet-control-attribution {
    font-size: 9px !important;
    background: rgba(255,255,255,.5) !important;
    padding: 1px 5px !important;
    opacity: 0.4;
    transition: opacity .2s;
}

.leaflet-control-attribution:hover {
    opacity: 1;
}

.leaflet-control-attribution a {
    color: #666 !important;
}
