
      body {
            background-color: #fff;           
            overflow-x: hidden;
        }
        h2 {
            font-weight: 700;
            color: #0d6efd;
        }
        .form-label {
            font-weight: 600;
            color: #1e293b; /* Make labels dark and readable */
        }
       
        .btn-success {
            background-color: #0d6efd;
            border-color: #0d6efd;
        }
        .btn-success:hover {
            background-color: #0b5ed7;
            border-color: #0a58ca;
        }

        #photo-preview {
            border-radius: 0.375rem;
            border: 1px solid #6c757d;
            max-width: 320px;
            max-height: 240px;
            margin-top: 0.5rem;
        }
        #captureBtn {
            margin-top: 0.5rem;
            display: none;
        }
        #startCameraBtn {
            margin-bottom: 0.5rem;
        }
         .sidebar {
            background-color: #1e293b;
            min-height: 100vh;
            width: 280px;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            transition: transform 0.3s ease;
            border-right: 1px solid #334155;
        }

        .sidebar.collapsed {
            transform: translateX(-100%);
        }

        .sidebar-header {
            background-color: #0f172a;
            padding: 1.5rem;
            border-bottom: 1px solid #334155;
        }

        .sidebar-nav {
            padding: 1rem 0;
        }

        .sidebar-nav .nav-link {
            color: #94a3b8;
            padding: 0.75rem 1.5rem;
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.2s ease;
            border-left: 3px solid transparent;
        }

        .sidebar-nav .nav-link:hover {
            color: #e2e8f0;
            background-color: #334155;
        }

        .sidebar-nav .nav-link.active {
            color: #3b82f6;
            background-color: #374151;
            border-left-color: #3b82f6;
        }

        .sidebar-nav .nav-link i {
            width: 20px;
            margin-right: 12px;
            font-size: 1rem;
        }

        .main-content {
            margin-left: 280px;
            transition: margin-left 0.3s ease;
            min-height: 100vh;
        }

        .main-content.expanded {
            margin-left: 0;
        }

        .top-header {
            background-color: #1e293b;
            border-bottom: 1px solid #334155;
            padding: 1rem 0;
            backdrop-filter: blur(10px);
        }

        .stats-card {
            background-color: #1e293b;
            border: 1px solid #334155;
            border-radius: 8px;
            transition: transform 0.2s ease;
        }

        .stats-card:hover {
            transform: translateY(-2px);
        }

        .alert-item {
            background-color: #1e293b;
            border-left: 4px solid #ef4444;
            border-radius: 0 8px 8px 0;
        }

        .alert-item.bolo {
            border-left-color: #f59e0b;
        }

        .status-badge {
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .status-wanted {
            background-color: #ef4444;
            color: white;
        }

        .status-custody {
            background-color: #f59e0b;
            color: white;
        }

        .status-released {
            background-color: #10b981;
            color: white;
        }

        .priority-high {
            background-color: #ef4444;
            color: white;
        }

        .priority-medium {
            background-color: #f59e0b;
            color: white;
        }

        .priority-low {
            background-color: #6b7280;
            color: white;
        }

        .officer-status {
            background-color: #1e293b;
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 8px;
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        .map-container {
            background-color: #1e293b;
            border-radius: 8px;
            min-height: 400px;
        }

        .badge-live {
            background-color: #10b981;
            color: white;
            font-size: 0.75rem;
            padding: 2px 6px;
            border-radius: 3px;
        }

        .notification-dropdown {
            max-height: 300px;
            overflow-y: auto;
        }

        .breadcrumb-item.active {
            color: #3b82f6;
        }

        @media (max-width: 768px) {
            .sidebar {
                transform: translateX(-100%);
            }

            .sidebar.show {
                transform: translateX(0);
            }

            .main-content {
                margin-left: 0;
            }

            .top-header {
                padding: 0.75rem 0;
            }

            .stats-card {
                margin-bottom: 1rem;
            }
        }

        .sidebar-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .sidebar-overlay.show {
            display: block;
        }
