    body {
      background: #c8ecf5;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .card {
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border: none;
      border-radius: 10px;
    }
    
    .section-title1 {
      color: #2c3e50;
      font-weight: 600;
      border-left: 4px solid #3498db;
      padding-left: 15px;
    }
    
    .loading-spinner {
      display: none;
      text-align: center;
      padding: 2rem;
    }
    
    .no-staff {
      text-align: center;
      padding: 2rem;
      color: #6c757d;
    }
    
    .toast-container {
      position: fixed;
      top: 1rem;
      right: 1rem;
      z-index: 1080;
    }
    
    .custom-toast {
      padding: 12px 16px;
      margin-bottom: 10px;
      border-radius: 4px;
      color: white;
      font-weight: 500;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      animation: slideIn 0.3s ease-out;
      max-width: 300px;
    }
    
    @keyframes slideIn {
      from {
        transform: translateX(100%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }
    
    .toast-success {
      background-color: #28a745;
    }
    
    .toast-danger {
      background-color: #dc3545;
    }
    
    .toast-warning {
      background-color: #ffc107;
      color: #212529;
    }
    
    .toast-info {
      background-color: #17a2b8;
    }
    
    .table-search-container {
      margin-bottom: 1rem;
    }
    
    .staff-type-filter {
      background: #f8f9fa;
      padding: 15px;
      border-radius: 8px;
      border: 1px solid #dee2e6;
    }
    
    .radio-group {
      display: flex;
      gap: 20px;
      align-items: center;
    }
    
    .radio-option {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .radio-option input[type="radio"] {
      transform: scale(1.2);
    }
    
    .table-container {
      position: relative;
      min-height: 200px;
      max-height: 500px;
      overflow-y: auto;
      border: 1px solid #dee2e6;
      border-radius: 8px;
    }

    .table thead th {
      position: sticky;
      top: 0;
      background: #f8f9fa;
      z-index: 10;
    }
    
    /* Role badges */
    .role-badge {
      font-size: 12px;
      padding: 4px 8px;
      border-radius: 4px;
      font-weight: bold;
    }
    
    .role-admin {
      background-color: #dc3545;
      color: white;
    }
    
    .role-teacher {
      background-color: #17a2b8;
      color: white;
    }
    
    .role-staff {
      background-color: #6c757d;
      color: white;
    }
    
    /* Status badges */
   .status-active {
      background-color: #28a745 !important; /* Green */
      color: #fff !important;
      font-weight: 600;
      border-radius: 6px;
      padding: 3px 8px;
    }

    .status-inactive {
      background-color: #dc3545 !important; /* Red */
      color: #fff !important;
      font-weight: 600;
      border-radius: 6px;
      padding: 3px 8px;
    }
    .action-btn {
      font-size: 12px;
      padding: 4px 8px;
    }
    
    .search-row {
      margin-bottom: 15px;
    }
    
    .action-buttons-row {
      margin-bottom: 15px;
    }
    
    .action-search-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
    }
    
    .action-buttons-group {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    
    .table-search-input {
      min-width: 250px;
    }
    
    @media (max-width: 768px) {
      .action-search-row {
        flex-direction: column;
        align-items: stretch;
      }
      
      .action-buttons-group {
        justify-content: center;
      }
      
      .table-search-input {
        min-width: 100%;
      }
    }
    
    .modal-header {
      background: #3498db;
      color: white;
    }
    
    .form-label {
      font-weight: 500;
      color: #2c3e50;
    }

    /* Autocomplete styles */
    .autocomplete {
      position: relative;
    }
    
    .autocomplete-items {
      position: absolute;
      border: 1px solid #d4d4d4;
      border-bottom: none;
      border-top: none;
      z-index: 99;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 200px;
      overflow-y: auto;
      background: white;
    }
    
    .autocomplete-item {
      padding: 10px;
      cursor: pointer;
      border-bottom: 1px solid #d4d4d4;
      background-color: #fff;
    }
    
    .autocomplete-item:hover {
      background-color: #e9e9e9;
    }
    
    .autocomplete-item small {
      color: #666;
      font-size: 0.85em;
    }