﻿    :root {
            --brand-secondary: #FFD700;
            --brand-primary: #040990;
            --brand-dark-gray: #434244;
            --brand-medium-gray: #808285;
            --brand-white: #ffffff;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        }

        .navbar-dark {
            background-color: var(--brand-primary) !important;
        }

        .btn-primary {
            background-color: var(--brand-secondary);
            border-color: var(--brand-secondary);
            color: var(--brand-primary);
            font-weight: 600;
        }

        .btn-primary:hover, .btn-primary:focus {
            background-color: #e6b800;
            border-color: #e6b800;
            color: var(--brand-primary);
        }

        .btn-outline-primary {
            color: var(--brand-secondary);
            border-color: var(--brand-secondary);
        }

        .btn-outline-primary:hover {
            background-color: var(--brand-secondary);
            border-color: var(--brand-secondary);
            color: var(--brand-primary);
        }

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

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

        .brand-logo {
            color: var(--brand-secondary);
            font-weight: bold;
            font-size: 1.5rem;
        }

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

        .dashboard-header {
            background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-dark-gray) 100%);
            color: var(--brand-white);
            padding: 40px 0;
            position: relative;
        }

        .dashboard-content {
            position: relative;
            z-index: 2;
        }

        .stats-card {
            background: var(--brand-white);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-left: 5px solid var(--brand-secondary);
            transition: transform 0.3s ease;
        }

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

        .stats-card .icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .stats-card .number {
            font-size: 2rem;
            font-weight: bold;
            color: var(--brand-dark-gray);
        }

        .stats-card .label {
            color: var(--brand-medium-gray);
            font-size: 0.9rem;
        }

        .bid-card {
            background: var(--brand-white);
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .bid-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .bid-status {
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .status-winning {
            background-color: #d4edda;
            color: #155724;
        }

        .status-outbid {
            background-color: #f8d7da;
            color: #721c24;
        }

        .status-won {
            background-color: var(--brand-secondary);
            color: var(--brand-primary);
        }

        .status-lost {
            background-color: #f1f3f4;
            color: var(--brand-medium-gray);
        }

        .status-watching {
            background-color: #cce5ff;
            color: #004085;
        }

        .auction-timer {
            font-weight: bold;
            color: #dc3545;
            font-size: 0.9rem;
        }

        .sidebar {
            background: var(--brand-white);
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 0;
            overflow: hidden;
        }

        .sidebar-header {
            background: var(--brand-secondary);
            color: var(--brand-primary);
            padding: 20px;
            font-weight: 600;
        }

        .sidebar-item {
            padding: 15px 20px;
            border-bottom: 1px solid #f1f3f4;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
        }

        .sidebar-item:hover {
            background-color: #f8f9fa;
        }

        .sidebar-item.active {
            background-color: rgba(255, 204, 0, 0.1);
            border-right: 3px solid var(--brand-secondary);
        }

        .sidebar-item i {
            margin-right: 10px;
            width: 20px;
        }

        .user-profile {
            display: flex;
            align-items: center;
            padding: 20px;
            background: rgba(255, 204, 0, 0.1);
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .user-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--brand-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--brand-primary);
            margin-right: 15px;
        }

        .vehicle-image {
            width: 100px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
        }

        .table-responsive {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .table {
            margin-bottom: 0;
        }

        .table thead th {
            background-color: var(--brand-secondary);
            color: var(--brand-primary);
            border: none;
            font-weight: 600;
        }

        .table tbody tr:hover {
            background-color: rgba(255, 204, 0, 0.05);
        }

        .quick-action-btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin: 2px;
        }

        .notification-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #dc3545;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .activity-item {
            padding: 15px;
            border-bottom: 1px solid #f1f3f4;
            display: flex;
            align-items: center;
        }

        .activity-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 0.9rem;
        }

        .activity-time {
            color: var(--brand-medium-gray);
            font-size: 0.8rem;
        }

        @media (max-width: 768px) {
            .dashboard-header {
                padding: 20px 0;
            }

            .stats-card {
                margin-bottom: 20px;
            }

            .sidebar {
                margin-bottom: 20px;
            }
        }

        .filter-tabs {
            background: var(--brand-white);
            border-radius: 10px;
            padding: 5px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .filter-tab {
            padding: 10px 20px;
            border-radius: 8px;
            border: none;
            background: transparent;
            color: var(--brand-medium-gray);
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .filter-tab.active {
            background: var(--brand-secondary);
            color: var(--brand-primary);
        }

        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: var(--brand-medium-gray);
        }

        .empty-state i {
            font-size: 4rem;
            margin-bottom: 20px;
            opacity: 0.5;
        }

      .active>.page-link, .page-link.active {
  background-color: #FFD700 !important;
    border-color: #FFD700 !important;
}

.page-link {
    color: #000  !important;
 }

    .footer-bg {
            background-color: var(--brand-dark-gray) !important;
        }
