/**
 * Echo911 CRM - True Black Dark Theme Override
 * Overrides Admindek dark mode with #000000 background and Electric Blue primary.
 */

/* True Black Dark Theme */
[data-pc-theme="dark"] {
    --bs-body-bg: #000000;
    --bs-body-color: #e0e0e0;
    --bs-primary: #0d6efd;
    --bs-primary-rgb: 13, 110, 253;
}

[data-pc-theme="dark"] body {
    background-color: #000000 !important;
    color: #e0e0e0;
}

/* Cards - slightly elevated from pure black */
[data-pc-theme="dark"] .card {
    background-color: #0a0a0a !important;
    border-color: #1a1a1a !important;
}

[data-pc-theme="dark"] .card .card-header {
    background-color: #0a0a0a !important;
    border-color: #1a1a1a !important;
}

/* Sidebar */
[data-pc-theme="dark"] .pc-sidebar {
    background-color: #000000 !important;
    border-right: 1px solid #111111 !important;
}

[data-pc-theme="dark"] .pc-sidebar .navbar-wrapper {
    background-color: #000000 !important;
}

[data-pc-theme="dark"] .pc-sidebar .navbar-content {
    background-color: #000000 !important;
}

[data-pc-theme="dark"] .pc-sidebar .m-header {
    background-color: #000000 !important;
}

/* Sidebar active item - Electric Blue */
[data-pc-theme="dark"] .pc-sidebar .pc-navbar > .pc-item.active > .pc-link,
[data-pc-theme="dark"] .pc-sidebar .pc-navbar > .pc-item > .pc-link:hover {
    color: #0d6efd !important;
}

[data-pc-theme="dark"] .pc-sidebar .pc-submenu .pc-item.active > .pc-link {
    color: #0d6efd !important;
}

/* Header */
[data-pc-theme="dark"] .pc-header {
    background-color: #050505 !important;
    border-bottom: 1px solid #111111 !important;
}

/* Dropdown menus */
[data-pc-theme="dark"] .dropdown-menu {
    background-color: #0a0a0a !important;
    border-color: #1a1a1a !important;
}

[data-pc-theme="dark"] .dropdown-item:hover {
    background-color: #111111 !important;
}

/* Modals */
[data-pc-theme="dark"] .modal-content {
    background-color: #0a0a0a !important;
    border-color: #1a1a1a !important;
}

/* Tables */
[data-pc-theme="dark"] .table {
    --bs-table-bg: #000000;
    --bs-table-striped-bg: #050505;
    --bs-table-hover-bg: #0a0a0a;
    border-color: #1a1a1a !important;
}

[data-pc-theme="dark"] .table thead th {
    background-color: #050505 !important;
    border-color: #1a1a1a !important;
}

/* Forms */
[data-pc-theme="dark"] .form-control,
[data-pc-theme="dark"] .form-select {
    background-color: #0a0a0a !important;
    border-color: #222222 !important;
    color: #e0e0e0 !important;
}

[data-pc-theme="dark"] .form-control:focus,
[data-pc-theme="dark"] .form-select:focus {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25) !important;
}

/* Borders */
[data-pc-theme="dark"] .border {
    border-color: #1a1a1a !important;
}

/* Text headings pop in white */
[data-pc-theme="dark"] h1, [data-pc-theme="dark"] h2, [data-pc-theme="dark"] h3,
[data-pc-theme="dark"] h4, [data-pc-theme="dark"] h5, [data-pc-theme="dark"] h6,
[data-pc-theme="dark"] .h1, [data-pc-theme="dark"] .h2, [data-pc-theme="dark"] .h3,
[data-pc-theme="dark"] .h4, [data-pc-theme="dark"] .h5, [data-pc-theme="dark"] .h6 {
    color: #ffffff !important;
}

/* Auth pages - clean black, no decorative blobs */
.auth-main {
    background-color: #000000 !important;
}

.auth-wrapper .card {
    background-color: #0a0a0a !important;
}

/* Kill Admindek default auth background circles */
.auth-bg,
.auth-bg .r {
    display: none !important;
}

[data-pc-theme="dark"] .auth-main {
    background-color: #000000 !important;
}

[data-pc-theme="light"] .auth-main {
    background-color: #f4f7fa !important;
}

[data-pc-theme="light"] .auth-wrapper .card {
    background-color: #ffffff !important;
}

/* Loader */
[data-pc-theme="dark"] .loader-bg {
    background: #000000;
}

/* Scrollbar */
[data-pc-theme="dark"] ::-webkit-scrollbar-track {
    background: #000000;
}

[data-pc-theme="dark"] ::-webkit-scrollbar-thumb {
    background: #222222;
}

/* Logo swap: show/hide based on theme */
[data-pc-theme="dark"] .logo-light {
    display: none !important;
}
[data-pc-theme="dark"] .logo-dark-theme {
    display: inline-block !important;
}
[data-pc-theme="light"] .logo-dark-theme {
    display: none !important;
}
[data-pc-theme="light"] .logo-light {
    display: inline-block !important;
}
