
    :root {
      --premium-color: #FF9933; /* Saffron color */
      --standard-color: #28a745; /* Green color */
      --new-badge-color: #dc3545; /* Red color for New badge */
    }
    
    body {
      background-color: #f8f9fa;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .navbar-brand {
      font-weight: 700;
      color: #fff !important;
    }
    
    .main-container {
      padding: 20px;
      margin-top: 20px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }
    
    .page-header {
      padding-bottom: 15px;
      margin-bottom: 20px;
      border-bottom: 1px solid #e9ecef;
    }
    
    .filter-card {
      background-color: #f8f9fa;
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 25px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      display: none; /* Hidden by default */
    }
    
    .filter-card.show {
      display: block; /* Show when toggled */
    }
    
    .table-container {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .badge-new {
      background-color: var(--new-badge-color);
      font-size: 0.7rem;
      padding: 0.35em 0.65em;
    }
    
    .consultant-tag {
      font-size: 0.8rem;
      padding: 0.4em 0.7em;
      border-radius: 4px;
    }
    
    .tag-premium {
      background-color: var(--premium-color);
      color: white;
    }
    
    .tag-standard {
      background-color: var(--standard-color);
      color: white;
    }
    
    .view-resume-btn {
      transition: all 0.2s;
    }
    
    .view-resume-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    #resumeViewer {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80%;
      height: 80%;
      z-index: 1050;
      background: white;
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(0,0,0,0.2);
    }
    
    #resumeFrame {
      width: 100%;
      height:600px;
      border: none;
    }
    
    .overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 1040;
    }
    
    .dataTables_filter {
      margin-bottom: 15px;
    }
    
    .table-hover tbody tr:hover {
      background-color: rgba(0, 123, 255, 0.05);
    }
    
    /* Modern status indicators */
    .status-indicator {
      display: inline-block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      margin-right: 5px;
    }
    
    .status-available {
      background-color: #28a745;
    }
    
    .status-bench {
      background-color: #ffc107;
    }
    
    /* Highlight premium rows */
    tr.premium-row {
      background-color: rgba(255, 153, 51, 0.05) !important;
    }
    
    tr.premium-row:hover {
      background-color: rgba(255, 153, 51, 0.1) !important;
    }
    
    .toggle-filters-btn {
      margin-bottom: 15px;
    }
    
    /* Email link styling */
    .email-link {
      color: #0d6efd;
      text-decoration: none;
    }
    
    .email-link:hover {
      text-decoration: underline;
    }
    
    /* Recruiter email styling */
    .recruiter-email {
      font-size: 0.85rem;
      color: #6c757d;
      margin-top: 5px;
    }
  