<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* DevTrack Custom Styles - Dark Theme Only */

/* NUCLEAR OPTION - HIGHEST SPECIFICITY OVERRIDES */
html body div.d-flex.vh-100 nav.sidebar,
html body div nav.sidebar,
html body nav.sidebar,
body div.d-flex.vh-100 nav.sidebar,
body div nav.sidebar,
body nav.sidebar,
div.d-flex.vh-100 nav.sidebar,
div nav.sidebar,
nav.sidebar {
    background: #1e293b !important;
    background-image: none !important;
    background-color: #1e293b !important;
}

/* Target any possible navigation element with gradient */
html body nav,
body nav,
nav {
    background-image: none !important;
}

/* Specifically target the MainLayout sidebar */
html body div.d-flex nav,
body div.d-flex nav,
div.d-flex nav {
    background: #1e293b !important;
    background-image: none !important;
    background-color: #1e293b !important;
}

/* FORCE OVERRIDE BLAZOR ERROR BOUNDARIES - HIGHEST SPECIFICITY */
html body .blazor-error-boundary,
html body div.blazor-error-boundary,
body .blazor-error-boundary,
.blazor-error-boundary {
    background: #334155 !important;
    background-image: none !important;
    background-color: #334155 !important;
    border: 1px solid #ef4444 !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    color: #f1f5f9 !important;
    margin: 1rem 0 !important;
    box-shadow: none !important;
}

html body .blazor-error-boundary::after,
html body div.blazor-error-boundary::after,
body .blazor-error-boundary::after,
.blazor-error-boundary::after {
    content: "An error has occurred." !important;
    color: #ef4444 !important;
    font-weight: 600 !important;
    background: none !important;
    background-image: none !important;
}

html body .blazor-error-boundary::before,
html body div.blazor-error-boundary::before,
body .blazor-error-boundary::before,
.blazor-error-boundary::before {
    display: none !important;
    content: none !important;
    background: none !important;
    background-image: none !important;
}

/* FORCE OVERRIDE SIDEBAR GRADIENT - Target the specific sidebar */
nav.sidebar,
.sidebar,
nav[class*="sidebar"],
div[class*="sidebar"] {
    background-color: #1e293b !important;
    background-image: none !important;
    background: #1e293b !important;
}

/* Override any scoped CSS that might be adding gradients to navigation */
nav {
    background-image: none !important;
}

nav.sidebar {
    background: #1e293b !important;
    background-image: none !important;
    background-color: #1e293b !important;
}

/* Target any element that might have the rainbow gradient specifically */
*[style*="linear-gradient(180deg, rgb(5, 39, 103)"],
*[style*="linear-gradient(180deg,rgb(5,39,103)"],
div[style*="background-image: linear-gradient"] {
    background: #1e293b !important;
    background-image: none !important;
}

/* Override any default app styling */
#app {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    min-height: 100vh;
}

/* Ensure main app container uses our theme */
.app {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    min-height: 100vh;
}

:root {
    /* Dark mode colors only */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: #334155;
    --bg-tertiary: #475569;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #475569;
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --shadow: rgba(0, 0, 0, 0.3);
}

/* Base styles - force override everything */
* {
    box-sizing: border-box;
}

html {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

body {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
}

/* Override any Bootstrap or default component backgrounds */
.container, .container-fluid {
    background-color: transparent !important;
}

.row {
    background-color: transparent !important;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, 
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-sm, .col-md, .col-lg, .col-xl, .col-xxl {
    background-color: transparent !important;
}

/* Override Bootstrap defaults */
.text-dark {
    color: var(--text-primary) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.bg-white {
    background-color: var(--bg-card) !important;
}

.bg-light {
    background-color: var(--bg-secondary) !important;
}

/* Card components */
.card {
    background-color: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px var(--shadow);
    color: var(--text-primary) !important;
    overflow: hidden; /* Ensures child elements don't extend beyond border radius */
}

.card:hover {
    box-shadow: 0 10px 15px -3px var(--shadow);
    transform: translateY(-1px);
}

.card-header {
    background-color: var(--bg-secondary) !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding: 1.5rem;
    color: var(--text-primary) !important;
    border-top-left-radius: 11px; /* Slightly less than card to account for border */
    border-top-right-radius: 11px;
}

.card-body {
    padding: 1.5rem;
    background-color: var(--bg-card) !important;
    color: var(--text-primary) !important;
}

.card-footer {
    background-color: var(--bg-secondary) !important;
    border-top: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
}

.card-title {
    color: var(--text-primary) !important;
}

.card-text {
    color: var(--text-secondary) !important;
}

/* Navigation */
.navbar {
    background-color: var(--bg-card) !important;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.nav-link {
    color: var(--text-secondary) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-primary) !important;
}

.nav-link.active {
    color: var(--accent-primary) !important;
    font-weight: 600;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%) !important;
    color: white !important;
    border: none !important;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--accent-primary) !important;
    color: var(--accent-primary) !important;
    background: transparent !important;
}

.btn-outline-primary:hover {
    background: var(--accent-primary) !important;
    color: white !important;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-color) !important;
}

.btn-secondary:hover {
    background-color: var(--bg-tertiary) !important;
    color: var(--text-primary) !important;
}

.btn-success {
    background: var(--success) !important;
    color: white !important;
}

.btn-warning {
    background: var(--warning) !important;
    color: white !important;
}

.btn-danger {
    background: var(--danger) !important;
    color: white !important;
}

/* Forms */
.form-control, .form-select {
    background-color: var(--bg-secondary) !important;
    border: 2px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    border-radius: 8px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent-primary) !important;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1) !important;
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

.form-control::placeholder {
    color: var(--text-muted) !important;
}

.form-label {
    color: var(--text-primary) !important;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-text {
    color: var(--text-secondary) !important;
}

.form-check-input {
    background-color: var(--bg-secondary) !important;
    border: 1px solid var(--border-color) !important;
}

.form-check-input:checked {
    background-color: var(--accent-primary) !important;
    border-color: var(--accent-primary) !important;
}

.form-check-label {
    color: var(--text-primary) !important;
}

/* Task Cards */
.task-card {
    background-color: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    color: var(--text-primary) !important;
    overflow: hidden; /* Ensures child elements don't extend beyond border radius */
}

.task-card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 4px 12px var(--shadow);
}

.task-priority-high {
    border-left: 4px solid var(--danger);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.task-priority-medium {
    border-left: 4px solid var(--warning);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.task-priority-low {
    border-left: 4px solid var(--success);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

/* Kanban Columns */
.kanban-column {
    background-color: var(--bg-secondary) !important;
    border-radius: 12px;
    padding: 1rem;
    min-height: 500px;
    border: 1px solid var(--border-color);
}

.kanban-header {
    font-weight: 600;
    color: var(--text-primary) !important;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

/* Tags */
.tag {
    display: inline-block;
    background: var(--accent-primary);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}

.tag:hover {
    background: var(--accent-secondary);
    cursor: pointer;
}

/* Modal overrides */
.modal-content {
    background-color: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

.modal-header {
    background-color: var(--bg-secondary) !important;
    border-bottom: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

.modal-title {
    color: var(--text-primary) !important;
}

.modal-body {
    background-color: var(--bg-card) !important;
    color: var(--text-primary) !important;
}

.modal-footer {
    background-color: var(--bg-card) !important;
    border-top: 1px solid var(--border-color) !important;
}

.btn-close {
    filter: invert(1);
}

/* Dropdown overrides */
.dropdown-menu {
    background-color: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
}

.dropdown-item {
    color: var(--text-primary) !important;
}

.dropdown-item:hover {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

/* Text color overrides */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary) !important;
}

p {
    color: var(--text-primary) !important;
}

small {
    color: var(--text-secondary) !important;
}

/* Progress bars - ensure they respect card boundaries */
.progress {
    background-color: var(--bg-secondary) !important;
    border-radius: 6px;
    overflow: hidden;
}

.progress-bar {
    background-color: var(--accent-primary) !important;
    border-radius: 6px;
}

/* Sidebar styling to match modern card design */
.sidebar {
    width: 280px;
    min-height: 100vh;
    background-color: #1e293b !important;
    border-right: 1px solid var(--border-color);
    box-shadow: 4px 0 6px -1px var(--shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background-color: #0f172a;
    border-top-right-radius: 0;
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background-color: #0f172a;
    margin-top: auto;
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-primary);
    min-height: 100vh;
}

.text-accent {
    color: var(--accent-primary) !important;
}

/* Navigation menu styling */
.nav-menu {
    padding: 0;
}

.nav-menu .nav-item {
    margin-bottom: 0.5rem;
}

.nav-menu .nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--text-secondary) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid transparent;
}

.nav-menu .nav-link:hover {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border-color: var(--border-color);
    transform: translateX(2px);
}

.nav-menu .nav-link.active {
    background-color: var(--accent-primary) !important;
    color: white !important;
    border-color: var(--accent-primary);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.nav-menu .nav-link i {
    width: 20px;
    margin-right: 0.75rem;
    text-align: center;
}

/* Navigation divider */
.nav-divider {
    border: none;
    height: 1px;
    background-color: var(--border-color);
    margin: 1rem 0;
    opacity: 0.5;
}

/* Mobile Navigation */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle {
    border: none !important;
    background: transparent !important;
    color: var(--text-primary) !important;
    font-size: 1.25rem !important;
    padding: 0.5rem !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.mobile-menu-toggle:hover {
    background: var(--accent-primary) !important;
    transform: scale(1.1) !important;
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--accent-primary) !important;
    background: var(--accent-primary) !important;
}

.mobile-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
}

.mobile-close .btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-close .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .main-content {
        margin-left: 0 !important;
        padding-top: 80px !important; /* Account for mobile header */
    }
    
    .sidebar {
        width: 280px !important;
        height: 100vh !important;
        position: fixed !important;
        top: 0 !important;
        left: -280px !important;
        z-index: 1000 !important;
        transition: left 0.3s ease !important;
        background: var(--bg-secondary) !important;
        border-right: 1px solid var(--border-color) !important;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3) !important;
        min-height: 100vh !important;
    }
    
    .sidebar.mobile-open {
        left: 0 !important;
        transform: translateX(0) !important;
    }
}

@media (max-width: 768px) {
    .card-body {
        padding: 1rem;
    }
    
    .kanban-column {
        margin-bottom: 1rem;
    }
    
    .main-content {
        padding: 80px 0.5rem 0.5rem 0.5rem;
    }
    
    .container-fluid {
        padding: 0.5rem;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--accent-primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Modern Icon Styling */
.activity-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    font-size: 0.875rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.activity-icon-success {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.activity-icon-primary {
    background: linear-gradient(135deg, #4338ca 0%, #5b21b6 100%);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

.activity-icon-warning {
    background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.activity-icon-info {
    background: linear-gradient(135deg, #0e7490 0%, #155e75 100%);
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.2);
}

.project-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.project-icon-primary {
    background: linear-gradient(135deg, #4338ca 0%, #5b21b6 100%);
    box-shadow: 0 3px 12px rgba(99, 102, 241, 0.2);
}

.project-icon-success {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    box-shadow: 0 3px 12px rgba(16, 185, 129, 0.2);
}

.project-icon-warning {
    background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
    box-shadow: 0 3px 12px rgba(245, 158, 11, 0.2);
}

.stats-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stats-icon-primary {
    background: linear-gradient(135deg, #4338ca 0%, #5b21b6 100%);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
}

.stats-icon-warning {
    background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
}

.stats-icon-success {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
}

.stats-icon-info {
    background: linear-gradient(135deg, #0e7490 0%, #155e75 100%);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.2);
}

/* Hover effects for icons */
.activity-icon:hover,
.project-icon:hover,
.stats-icon:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.activity-icon:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.project-icon:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.stats-icon:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Stats Card Styling */
.stats-card {
    border-radius: 12px;
    padding: 1.5rem;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-card:hover {
    transform: translateY(-2px);
}

.stats-card-primary {
    background: linear-gradient(135deg, #4338ca 0%, #5b21b6 100%);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
}

.stats-card-primary:hover {
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.stats-card-info {
    background: linear-gradient(135deg, #0e7490 0%, #155e75 100%);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.2);
}

.stats-card-info:hover {
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.stats-card-success {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
}

.stats-card-success:hover {
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.stats-card-warning {
    background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
}

.stats-card-warning:hover {
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.stats-card .stats-icon {
    float: left;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.stats-card .stats-content {
    overflow: hidden;
}

.stats-card .stats-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}

.stats-card .stats-content p {
    margin-bottom: 0;
    font-size: 0.875rem;
    opacity: 0.9;
    color: white;
} </pre></body></html>