
    :root {
      /* Colors */
      --cta-orange: #ff7900;
      --cta-orange-hover: #e56800;
      --cta-orange-light: #ff9533;
      --cta-orange-dark: #cc6100;
      
      /* Neutrals */
      --black: #000000;
      --dark-gray: #1a1a1a;
      --medium-gray: #666666;
      --light-gray: #cccccc;
      --off-white: #fafafa;
      --white: #ffffff;
      
      /* Status */
      --success: #22c55ed4;
      --warning: #f59e0b;
      --error: #ef4444;
      --info: #3b82f6;
      
      /* Spacing */
      --space-xs: 0.25rem;
      --space-sm: 0.5rem;
      --space-md: 1rem;
      --space-lg: 1.5rem;
      --space-xl: 2rem;
      --space-2xl: 3rem;
      --space-3xl: 4rem;
      --space-4xl: 5rem;
      --space-5xl: 6rem;
      --space-6xl: 8rem;
      
      /* Typography */
      --font-primary: 'Bricolage Grotesque', sans-serif;
      --font-secondary: 'Poppins', sans-serif;
      --font-body: 'Inter', sans-serif;
    }

    
    .dashboard-main{
      font-family: var(--font-body);
      background: linear-gradient(135deg, #f0f2f5 0%, #e2e8f0 100%);
      padding: var(--space-2xl) var(--space-lg);
      color: var(--dark-gray);
      min-height: 100vh;
    }

    .dashboard-container {
      max-width: 1440px;
      margin: 0 auto;
    }

    .dashboard-header {
      text-align: center;
      margin-bottom: var(--space-5xl);
    }

    .dashboard-title {
      font-family: var(--font-primary);
      font-size: 48px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: var(--space-md);
      background: linear-gradient(135deg, var(--cta-orange), var(--cta-orange-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .dashboard-subtitle {
      font-family: var(--font-body);
      font-size: 18px;
      color: var(--medium-gray);
      font-weight: 500;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--space-lg);
      margin-bottom: var(--space-4xl);
    }

    .stat-card {
      background: var(--white);
      padding: var(--space-2xl);
      border-radius: 16px !important;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--cta-orange), var(--cta-orange-light));
    }

    .stat-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    }

    .stat-number {
      font-family: var(--font-primary);
      font-size: 36px;
      font-weight: 700;
      color: var(--cta-orange);
      margin-bottom: var(--space-sm);
    }

    .stat-label {
      font-family: var(--font-secondary);
      font-size: 16px;
      color: var(--medium-gray);
      font-weight: 500;
    }

    .stat-icon {
      position: absolute;
      top: var(--space-lg);
      right: var(--space-lg);
      font-size: 24px;
      color: var(--cta-orange);
      opacity: 0.3;
    }

    .filters-section {
      background: var(--white);
      padding: var(--space-2xl);
      border-radius: 16px !important;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      margin-bottom: var(--space-2xl);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .filters-title {
      font-family: var(--font-secondary);
      font-size: 20px;
      font-weight: 600;
      color: var(--black);
      margin-bottom: var(--space-lg);
      display: flex;
      align-items: center;
      gap: var(--space-sm);
    }

    .filters-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: var(--space-lg);
      margin-bottom: var(--space-lg);
    }

    .filter-group {
      position: relative;
    }

    .filter-label {
      font-family: var(--font-secondary);
      font-size: 14px;
      font-weight: 500;
      color: var(--dark-gray);
      margin-bottom: var(--space-sm);
      display: block;
    }

    .filter-select {
      width: 100%;
      padding: var(--space-md);
      border: 2px solid var(--light-gray);
      border-radius: 8px;
      background: var(--white);
      font-family: var(--font-body);
      font-size: 14px;
      transition: all 0.3s ease;
      appearance: none;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
      background-position: right 12px center;
      background-repeat: no-repeat;
      background-size: 16px;
      padding-right: 40px;
    }

    .filter-select:focus {
      outline: none;
      border-color: var(--cta-orange);
      box-shadow: 0 0 0 3px rgba(255, 121, 0, 0.1);
    }

    .filter-actions {
      display: flex;
      gap: var(--space-md);
      justify-content: flex-end;
    }

    .btn {
      font-family: var(--font-secondary);
      font-weight: 600;
      font-size: 14px;
      padding: var(--space-md) var(--space-lg);
      border-radius: 8px !important;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: var(--space-sm);
      text-decoration: none;
    }

    .btn-primary {
      background: #2563eb;
      color: var(--white);
    }

    .btn-primary:hover {
      background: var(--cta-orange-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 121, 0, 0.3);
    }

    .btn-secondary {
      background: var(--off-white);
      color: var(--medium-gray);
      border: 1px solid var(--light-gray);
    }

    .btn-secondary:hover {
      background: var(--light-gray);
    }

    .table-wrapper {
      background: var(--white);
      border-radius: 16px !important;
      padding: var(--space-2xl);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.2);
      overflow: hidden;
    }

    .table-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: var(--space-2xl);
      flex-wrap: wrap;
      gap: var(--space-md);
    }

    .table-title {
      font-family: var(--font-secondary);
      font-size: 24px;
      font-weight: 600;
      color: var(--black);
      display: flex;
      align-items: center;
      gap: var(--space-sm);
    }

    /* Enhanced DataTable Responsive Styles */
    .dataTables_wrapper {
      border: none;
      padding: 0;
      box-shadow: none;
      width: 100%;
    }

    .dataTables_filter {
      float: right;
      margin-bottom: var(--space-lg);
    }

    .dataTables_filter input {
      border: 2px solid var(--light-gray);
      border-radius: 8px;
      padding: var(--space-md);
      font-family: var(--font-body);
      font-size: 14px;
      transition: all 0.3s ease;
      width: 300px;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%236b7280'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' d='m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607Z' /%3e%3c/svg%3e");
      background-position: right 12px center;
      background-repeat: no-repeat;
      background-size: 20px;
      padding-right: 40px;
    }

    .dataTables_filter input:focus {
      outline: none;
      border-color: var(--cta-orange);
      box-shadow: 0 0 0 3px rgba(255, 121, 0, 0.1);
    }

    /* Enhanced Table Styles with Better Mobile Support */
    table.dataTable {
      border-collapse: separate;
      border-spacing: 0;
      width: 100% !important;
      border-radius: 12px !important;
      overflow: hidden;
    }

    table.dataTable thead th {
      background: linear-gradient(135deg, var(--off-white), #f8fafc);
      color: var(--dark-gray);
      font-family: var(--font-secondary);
      font-size: 13px;
      font-weight: 600;
      padding: var(--space-lg);
      border-bottom: 2px solid var(--light-gray);
      text-align: left;
      position: relative;
      white-space: nowrap;
    }

    table.dataTable thead th:first-child {
      border-top-left-radius: 12px;
    }

    table.dataTable thead th:last-child {
      border-top-right-radius: 12px;
    }

    table.dataTable tbody tr {
      background: var(--white);
      transition: all 0.3s ease;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    table.dataTable tbody tr:hover {
      background: var(--off-white);
      transform: translateX(4px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    table.dataTable tbody tr:last-child td:first-child {
      border-bottom-left-radius: 12px;
    }

    table.dataTable tbody tr:last-child td:last-child {
      border-bottom-right-radius: 12px;
    }

    table.dataTable td {
      padding: var(--space-lg);
      vertical-align: middle;
      font-family: var(--font-body);
      font-size: 14px;
      border-top: none;
    }

    .university-cell {
      font-weight: 600;
      color: var(--black);
    }

    .program-cell {
      color: var(--dark-gray);
      font-weight: 500;
    }

    .city-cell {
      color: var(--medium-gray);
      display: flex;
      align-items: center;
      gap: var(--space-sm);
    }

    .fee-cell {
      font-family: var(--font-secondary);
      font-weight: 600;
      color: var(--success);
    }

    .deadline-cell {
      font-weight: 500;
      color: var(--dark-gray);
    }

    .days-remaining {
      font-size: 12px;
      padding: 4px 8px;
      border-radius: 20px;
      font-weight: 500;
      margin-top: 4px;
      display: inline-block;
    }

    .days-urgent {
      background: rgba(239, 68, 68, 0.1);
      color: var(--error);
    }

    .days-warning {
      background: rgba(245, 158, 11, 0.1);
      color: var(--warning);
    }

    .days-safe {
      background: rgba(34, 197, 94, 0.1);
      color: var(--success);
    }

    .days-closed {
      background: rgba(102, 102, 102, 0.1);
      color: var(--medium-gray);
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: var(--space-xs);
      padding: 6px 12px;
      font-size: 12px;
      font-weight: 600;
      border-radius: 20px;
      color: var(--white);
      font-family: var(--font-secondary);
    }

    .pill-open { 
      background: var(--success);
      box-shadow: 0 2px 8px rgba(34, 197, 94, 0.074);
    }

    .pill-closing { 
      background: var(--warning);
      box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    }

    .pill-closed { 
      background: var(--error);
      box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    }

    .apply-btn {
      padding: 8px 16px;
      background: #2564ebdc;
      color: var(--white);
      border-radius: 8px !important;
      font-size: 13px;
      font-weight: 600;
      font-family: var(--font-secondary);
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: var(--space-xs);
      border: none;
      cursor: pointer;
      white-space: nowrap;
    }

    .apply-btn:hover {
      background: var(--cta-orange-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 121, 0, 0.3);
    }

    .apply-btn.disabled {
      background: var(--medium-gray);
      opacity: 0.6;
      pointer-events: none;
      transform: none;
      box-shadow: none;
    }

    .dataTables_info {
      font-family: var(--font-body);
      color: var(--medium-gray);
      font-size: 14px;
      margin-top: var(--space-lg);
    }

    .dataTables_paginate {
      float: right;
      margin-top: var(--space-lg);
    }

    .dataTables_paginate .paginate_button {
      padding: 8px 12px;
      margin: 0 2px;
      border-radius: 8px;
      background: var(--off-white) !important;
      border: 1px solid var(--light-gray) !important;
      color: var(--medium-gray) !important;
      font-weight: 500;
      font-size: 13px;
      font-family: var(--font-secondary);
      transition: all 0.3s ease;
    }

    .dataTables_paginate .paginate_button:hover {
      background: var(--cta-orange) !important;
      color: var(--white) !important;
      border-color: var(--cta-orange) !important;
      transform: translateY(-2px);
    }

    .dataTables_paginate .paginate_button.current {
      background: var(--cta-orange) !important;
      color: var(--white) !important;
      border-color: var(--cta-orange) !important;
      box-shadow: 0 4px 16px rgba(255, 121, 0, 0.3);
    }

    /* ENHANCED MOBILE RESPONSIVE DESIGN */
    @media (max-width: 1023px) {
      .dashboard-title {
        font-size: 40px;
      }
      
      .filters-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
      
      .dataTables_filter input {
        width: 250px;
      }
    }

    @media (max-width: 767px) {
      body {
        padding: var(--space-lg);
      }
      
      .dashboard-title {
        font-size: 28px;
      }

      .dashboard-subtitle {
        font-size: 16px;
      }
      
      .filters-section {
        padding: var(--space-lg);
      }
      
      .filters-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
      }
      
      .table-wrapper {
        padding: var(--space-md);
        margin: 0 -var(--space-sm);
      }

      .table-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
      }

      .table-title {
        font-size: 20px;
      }
      
      .dataTables_filter {
        float: none;
        width: 100%;
        margin-bottom: var(--space-md);
      }

      .dataTables_filter input {
        width: 100%;
        max-width: none;
      }

      .dataTables_length {
        float: none;
        width: 100%;
        margin-bottom: var(--space-md);
      }

      .dataTables_length select {
        padding: 8px;
        border-radius: 6px;
        border: 1px solid var(--light-gray);
      }
      
      .filter-actions {
        justify-content: stretch;
        flex-direction: column;
      }
      
      .filter-actions .btn {
        flex: 1;
        justify-content: center;
      }

      .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: var(--space-md);
      }

      .stat-card {
        padding: var(--space-lg);
      }

      .stat-number {
        font-size: 28px;
      }

      .stat-label {
        font-size: 14px;
      }

      /* Enhanced DataTable Mobile Responsiveness */
      .dataTables_wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }

      table.dataTable {
        min-width: 800px;
        font-size: 13px;
      }

      table.dataTable th,
      table.dataTable td {
        padding: var(--space-sm) var(--space-xs);
        white-space: nowrap;
      }

      /* Mobile-specific responsive column behavior */
      table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control {
        position: relative;
        padding-left: 30px;
      }

      table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before {
        top: 50%;
        left: 5px;
        height: 1em;
        width: 1em;
        margin-top: -9px;
        display: block;
        position: absolute;
        color: var(--cta-orange);
        border: 2px solid var(--cta-orange);
        border-radius: 3px;
        box-shadow: 0 0 3px var(--light-gray);
        box-sizing: content-box;
        text-align: center;
        text-indent: 0 !important;
        font-family: 'Courier New', Courier, monospace;
        line-height: 1em;
        content: '+';
        background-color: var(--white);
        font-weight: bold;
      }

      table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td.dtr-control:before {
        content: '-';
        background-color: var(--cta-orange);
        color: var(--white);
      }

      /* Mobile pagination improvements */
      .dataTables_paginate {
        float: none;
        text-align: center;
        margin-top: var(--space-lg);
      }

      .dataTables_paginate .paginate_button {
        display: inline-block;
        padding: 6px 10px;
        margin: 0 1px;
        font-size: 12px;
      }

      /* Mobile info improvements */
      .dataTables_info {
        float: none;
        text-align: center;
        font-size: 12px;
        margin-top: var(--space-md);
      }

      /* Better mobile button sizing for table */
      .apply-btn {
        padding: 6px 12px;
        font-size: 11px;
      }

      .pill {
        padding: 4px 8px;
        font-size: 10px;
      }

      .days-remaining {
        font-size: 10px;
        padding: 2px 6px;
      }
    }

    /* Extra small devices */
    @media (max-width: 480px) {
      body {
        padding: var(--space-md);
      }

      .dashboard-title {
        font-size: 24px;
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
      }

      .stat-card {
        padding: var(--space-md);
      }

      .stat-number {
        font-size: 24px;
      }

      .stat-icon {
        font-size: 20px;
      }

      .table-wrapper {
        margin: 0 -var(--space-md);
        border-radius: 8px;
      }

      .filters-section {
        padding: var(--space-md);
      }

      .filters-title {
        font-size: 18px;
      }

      table.dataTable {
        min-width: 700px;
        font-size: 12px;
      }

      .apply-btn {
        padding: 4px 8px;
        font-size: 10px;
      }
    }

    /* Loading Animation */
    .loading {
      opacity: 0.6;
      pointer-events: none;
    }

    .loading::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 20px;
      height: 20px;
      border: 2px solid var(--light-gray);
      border-top: 2px solid var(--cta-orange);
      border-radius: 50%;
      animation: spin 1s linear infinite;
      transform: translate(-50%, -50%);
    }

    @keyframes spin {
      0% { transform: translate(-50%, -50%) rotate(0deg); }
      100% { transform: translate(-50%, -50%) rotate(360deg); }
    }

    /* Floating Animation */
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    .stat-card:nth-child(odd) {
      animation: float 6s ease-in-out infinite;
    }

    .stat-card:nth-child(even) {
      animation: float 6s ease-in-out infinite 3s;
    }

    /* Notification styles */
    .notification {
      position: fixed;
      top: 20px;
      right: 20px;
      background: var(--white);
      border-radius: 12px;
      padding: var(--space-lg);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
      border-left: 4px solid var(--info);
      z-index: 1000;
      max-width: 400px;
      animation: slideInRight 0.5s ease-out;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-md);
    }

    .notification-success {
      border-left-color: var(--success);
    }

    .notification-error {
      border-left-color: var(--error);
    }

    .notification-warning {
      border-left-color: var(--warning);
    }

    .notification-content {
      display: flex;
      align-items: center;
      gap: var(--space-sm);
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--dark-gray);
    }

    .notification-close {
      background: none;
      border: none;
      color: var(--medium-gray);
      cursor: pointer;
      padding: 4px;
      border-radius: 4px;
      transition: all 0.3s ease;
    }

    .notification-close:hover {
      background: var(--off-white);
      color: var(--dark-gray);
    }

    @keyframes slideInRight {
      from {
        transform: translateX(100%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    @keyframes slideOutRight {
      from {
        transform: translateX(0);
        opacity: 1;
      }
      to {
        transform: translateX(100%);
        opacity: 0;
      }
    }

    /* Enhanced mobile responsiveness for notifications */
    @media (max-width: 768px) {
      .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
      }
    }
  