/* ===========================================================
   Deed Motors — Filament admin custom theme
   Dark branded sidebar + modern login. Palette: red #EE3135 / teal
   =========================================================== */

:root {
    --dm-red: #EE3135;
    --dm-sidebar: #16323d;
    --dm-sidebar-2: #0e2128;
}

/* ---------- Dark sidebar ---------- */
.fi-sidebar,
.fi-sidebar-header,
.fi-sidebar-nav {
    background: linear-gradient(180deg, var(--dm-sidebar) 0%, var(--dm-sidebar-2) 100%) !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
}
.fi-sidebar-header {
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

/* Group headings */
.fi-sidebar-group-label {
    color: #6f8b95 !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
}

/* Nav items */
.fi-sidebar-item-btn {
    border-radius: 0.6rem !important;
    transition: background 0.15s ease, color 0.15s ease;
}
.fi-sidebar-item-label {
    color: #d7e3e8 !important;
    font-weight: 500 !important;
}
.fi-sidebar-item-icon {
    color: #8ba6b0 !important;
}
.fi-sidebar-item-btn:hover {
    background: rgba(255, 255, 255, 0.07) !important;
}
.fi-sidebar-item-btn:hover .fi-sidebar-item-label,
.fi-sidebar-item-btn:hover .fi-sidebar-item-icon {
    color: #ffffff !important;
}

/* Active item */
.fi-sidebar-item.fi-active .fi-sidebar-item-btn,
.fi-sidebar-item-btn.fi-active,
.fi-sidebar-item-btn[aria-current="page"] {
    background: rgba(238, 49, 53, 0.16) !important;
}
.fi-sidebar-item.fi-active .fi-sidebar-item-btn .fi-sidebar-item-label,
.fi-sidebar-item.fi-active .fi-sidebar-item-btn .fi-sidebar-item-icon,
.fi-sidebar-item-btn.fi-active .fi-sidebar-item-label,
.fi-sidebar-item-btn.fi-active .fi-sidebar-item-icon,
.fi-sidebar-item-btn[aria-current="page"] .fi-sidebar-item-label,
.fi-sidebar-item-btn[aria-current="page"] .fi-sidebar-item-icon {
    color: var(--dm-red) !important;
}

/* Collapse / sidebar toggle icon visible on dark */
.fi-sidebar-header .fi-icon-btn { color: #8ba6b0 !important; }

/* Custom slim scrollbar */
.fi-sidebar-nav::-webkit-scrollbar { width: 6px; }
.fi-sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 3px;
}
.fi-sidebar-nav::-webkit-scrollbar-track { background: transparent; }

/* ---------- Branded login page ---------- */
.fi-simple-layout {
    background:
        radial-gradient(900px 600px at 80% -10%, rgba(36, 67, 80, 0.55), transparent 60%),
        radial-gradient(700px 600px at 10% 110%, rgba(238, 49, 53, 0.12), transparent 60%),
        linear-gradient(160deg, #1a3540 0%, #0e2128 100%) !important;
    background-color: #0e2128 !important;
}
.fi-simple-main {
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.6) !important;
}

/* ---------- Topbar / content polish ---------- */
.fi-topbar nav {
    backdrop-filter: blur(6px);
}
.fi-main {
    /* a touch more breathing room */
}

/* Stat cards: subtle lift */
.fi-wi-stats-overview-stat {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.fi-wi-stats-overview-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.25);
}
