.table {
      --bs-table-bg: white;
      --bs-table-color: #212529;
      --bs-table-border-color: #dee2e6;
      margin-bottom: 0;
    }

    .table th {
      background: #f1f3f5;
      color: #495057;
      text-transform: uppercase;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      border-bottom: 2px solid #dee2e6;
    }

    .table td {
      vertical-align: middle;
      padding: 1rem;
    }

    .status-badge {
      padding: 0.45em 0.9em;
      border-radius: 2rem;
      font-size: 0.85rem;
      font-weight: 500;
      background: #dc3545;
      color: white;
    }

    .action-btn {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 0 4px;
      transition: all 0.2s;
    }

    .action-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .action-view   { background: #0d6efd; color: white; }
    .action-edit   { background: #198754; color: white; }
    .action-delete { background: #dc3545; color: white; }

    .search-input {
      border: 1px solid #ced4da;
      border-radius: 8px;
    }

    .search-input:focus {
      border-color: var(--primary-orange);
      box-shadow: 0 0 0 0.25rem rgba(242,96,34,0.15);
    }

    .form-select {
      border-radius: 8px;
    }
