    /* Employee Specific Styles - Light Theme */
    main.p-6 {
      padding-inline: 16px !important;
    }
    .emp-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }
    .emp-filters {
      width: 100%;
    }
    .emp-filters-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      align-items: stretch;
    }
    @media (max-width: 980px) {
      .emp-filters-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    @media (max-width: 620px) {
      .emp-filters-grid {
        grid-template-columns: 1fr;
      }
    }
    .emp-filter-box {
      border-radius: 16px;
      padding: 12px;
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid rgba(148, 163, 184, 0.18);
      backdrop-filter: blur(10px);
      box-shadow: 0 14px 34px rgba(2, 6, 23, 0.08);
    }
    .emp-filter-label {
      font-size: 0.78rem;
      color: #475569;
      font-weight: 800;
      margin-bottom: 8px;
      letter-spacing: 0.01em;
    }
    .emp-filter-input {
      width: 100%;
      border-radius: 12px;
      padding: 10px 12px;
      background: #ffffff;
      border: 1px solid rgba(148, 163, 184, 0.22);
      color: #0f172a;
      outline: none;
      box-shadow: 0 10px 22px rgba(2, 6, 23, 0.06);
    }
    .emp-filter-input::placeholder {
      color: rgba(100, 116, 139, 0.9);
    }
    .emp-filter-input:focus {
      border-color: rgba(20, 184, 166, 0.45);
      box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.14), 0 10px 22px rgba(2, 6, 23, 0.06);
    }
    .emp-card {
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(148, 163, 184, 0.22);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      box-shadow: 0 16px 36px rgba(2, 6, 23, 0.08);
      transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, max-height 0.28s ease;
    }
    .emp-card:hover {
      background: #ffffff;
      border-color: rgba(20, 184, 166, 0.24);
      box-shadow: 0 20px 42px rgba(20, 184, 166, 0.1);
      transform: translateY(-4px) scale(1.01);
    }
    .emp-card {
      min-height: 292px;
      padding: 16px;
      border-radius: 18px;
      gap: 0;
      max-height: 308px;
    }
    .emp-card:hover {
      transform: translateY(-6px) scale(1.03);
      max-height: 720px;
    }
    .emp-card-summary {
      width: 100%;
      display: grid;
      gap: 10px;
      margin-top: 12px;
    }
    .emp-summary-row {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .status-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 5px 10px;
      border-radius: 999px;
      font-size: 0.74rem;
      font-weight: 800;
      border: 1px solid rgba(20, 184, 166, 0.18);
      background: rgba(20, 184, 166, 0.08);
      color: #0f766e;
      min-width: 96px;
      box-shadow: 0 10px 22px rgba(2, 6, 23, 0.06);
    }
    .status-pill.status-valid {
      background: rgba(16, 185, 129, 0.12);
      border-color: rgba(16, 185, 129, 0.22);
      color: #047857;
    }
    .status-pill.status-expiring {
      background: rgba(245, 158, 11, 0.12);
      border-color: rgba(245, 158, 11, 0.22);
      color: #b45309;
    }
    .status-pill.status-expired {
      background: rgba(239, 68, 68, 0.12);
      border-color: rgba(239, 68, 68, 0.22);
      color: #b91c1c;
    }
    .status-pill.status-unknown {
      background: rgba(148, 163, 184, 0.18);
      border-color: rgba(148, 163, 184, 0.22);
      color: #475569;
    }
    .emp-mini-actions {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 12px;
    }
    .emp-mini-btn {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      border: 1px solid rgba(148, 163, 184, 0.22);
      background: rgba(255, 255, 255, 0.92);
      color: #0f172a;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
      box-shadow: 0 10px 22px rgba(2, 6, 23, 0.06);
      font-size: 16px;
      line-height: 1;
    }
    .emp-mini-btn:hover {
      transform: translateY(-2px);
      background: #ffffff;
      border-color: rgba(20, 184, 166, 0.24);
      color: #0f766e;
      box-shadow: 0 14px 30px rgba(20, 184, 166, 0.12);
    }
    .emp-card-details,
    .emp-card-footer {
      width: 100%;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      margin-top: 0;
      transition: max-height 0.25s ease, opacity 0.22s ease;
    }
    .emp-card:hover .emp-card-details,
    .emp-card:hover .emp-card-footer {
      max-height: 460px;
      opacity: 1;
    }
    .emp-card:hover .emp-card-details {
      margin-top: 10px;
    }
    .emp-card:hover .emp-card-footer {
      margin-top: 12px;
    }
    .emp-card-details {
      margin-top: 0;
    }
    .emp-card-details .emp-detail {
      margin-top: 0;
      padding-top: 10px;
      border-top-color: rgba(148, 163, 184, 0.2);
    }
    .emp-card-details .emp-detail:first-child {
      border-top: none;
      padding-top: 0;
    }
    .emp-card-footer {
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
      margin-top: 0;
    }
    .emp-status-chip {
      padding: 5px 12px;
      border-radius: 999px;
    }
    .emp-open-btn {
      width: 100%;
      border-radius: 999px;
      padding: 10px 14px;
      border: 1px solid rgba(20, 184, 166, 0.22);
      background: rgba(20, 184, 166, 0.1);
      color: #0f766e;
      font-weight: 800;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }
    .emp-open-btn:hover {
      transform: translateY(-2px);
      background: rgba(20, 184, 166, 0.14);
      border-color: rgba(20, 184, 166, 0.28);
      box-shadow: 0 16px 30px rgba(20, 184, 166, 0.12);
    }
    .emp-card::before {
      background: linear-gradient(135deg, rgba(20, 184, 166, 0.06), rgba(99, 102, 241, 0.04), transparent 60%);
      opacity: 0.85;
    }
    .emp-card::after {
      height: 3px;
      opacity: 0.5;
      transform: scaleX(0.9);
    }
    .emp-card:hover::after,
    .emp-card:focus-visible::after {
      opacity: 0.58;
      transform: scaleX(1);
    }
    .emp-card:active {
      transform: translateY(-1px) scale(0.99);
    }
    .emp-card:focus-visible {
      outline: none;
      border-color: rgba(20, 184, 166, 0.45);
      box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.14), 0 20px 42px rgba(20, 184, 166, 0.1);
    }
    .emp-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(99, 102, 241, 0.06), transparent 60%);
      opacity: 0;
      transition: opacity 0.25s ease;
      pointer-events: none;
    }
    .emp-card:hover::before,
    .emp-card:focus-visible::before {
      opacity: 1;
    }
    .emp-card::after {
      content: "";
      position: absolute;
      inset-inline: 14px;
      bottom: 0;
      height: 4px;
      border-radius: 999px 999px 0 0;
      background: linear-gradient(90deg, rgba(20,184,166,0.92), rgba(59,130,246,0.78), rgba(99,102,241,0.82));
      opacity: 0.78;
      transform: scaleX(0.82);
      transform-origin: center;
      transition: transform 0.25s ease, opacity 0.25s ease;
      pointer-events: none;
    }
    .emp-card:hover::after,
    .emp-card:focus-visible::after {
      opacity: 1;
      transform: scaleX(1);
    }
    .emp-card-top-badge {
      position: absolute;
      top: 12px;
      inset-inline-end: 12px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 10px;
      border-radius: 999px;
      background: rgba(248, 250, 252, 0.96);
      border: 1px solid rgba(148, 163, 184, 0.2);
      color: #475569;
      font-size: 0.72rem;
      line-height: 1;
      backdrop-filter: blur(8px);
      z-index: 1;
      transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    }
    .emp-card-top-badge .arrow {
      color: #0f766e;
      font-size: 0.8rem;
      transform: translateX(0);
      transition: transform 0.25s ease, color 0.25s ease;
    }
    .emp-card:hover .emp-card-top-badge,
    .emp-card:focus-visible .emp-card-top-badge {
      background: rgba(240, 253, 250, 0.98);
      border-color: rgba(20, 184, 166, 0.24);
      color: #0f172a;
      transform: translateY(-1px);
    }
    .emp-card:hover .emp-card-top-badge .arrow,
    .emp-card:focus-visible .emp-card-top-badge .arrow {
      color: #0f766e;
      transform: translateX(-2px);
    }
    .emp-open-hint {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 0.75rem;
      color: #0f766e;
      background: rgba(20, 184, 166, 0.08);
      border: 1px solid rgba(20, 184, 166, 0.18);
      border-radius: 999px;
      padding: 6px 10px;
      margin-top: 2px;
      transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    }
    .emp-card:hover .emp-open-hint,
    .emp-card:focus-visible .emp-open-hint {
      color: #0f766e;
      background: rgba(20, 184, 166, 0.12);
      border-color: rgba(20, 184, 166, 0.24);
    }
    .emp-photo {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      border: 2px solid rgba(148, 163, 184, 0.22);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
      color: white;
      background: linear-gradient(135deg, #16B6B0, #55D6C2);
      margin-top: 8px;
    }
    .emp-name {
      font-weight: 700;
      color: #0f172a;
      font-size: 1.1rem;
      margin-top: 10px;
    }
    .emp-role {
      color: #64748b;
      font-size: 0.9rem;
      margin-top: 4px;
    }
    .emp-detail {
      width: 100%;
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      color: #475569;
      border-top: 1px solid rgba(148, 163, 184, 0.2);
      padding-top: 10px;
      margin-top: 5px;
    }
    .status-badge {
      font-size: 0.75rem;
      padding: 2px 8px;
      border-radius: 99px;
      font-weight: 600;
    }
    .status-valid { background: rgba(16, 185, 129, 0.12); color: #047857; border: 1px solid rgba(16, 185, 129, 0.22); }
    .status-expiring { background: rgba(245, 158, 11, 0.12); color: #b45309; border: 1px solid rgba(245, 158, 11, 0.22); }
    .status-expired { background: rgba(239, 68, 68, 0.12); color: #b91c1c; border: 1px solid rgba(239, 68, 68, 0.22); }
    .status-unknown { background: rgba(148, 163, 184, 0.18); color: #475569; border: 1px solid rgba(148, 163, 184, 0.26); }
    
    /* Modal Styles */
    .modal-overlay {
      position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(15, 23, 42, 0.18);
      backdrop-filter: blur(8px);
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .modal-overlay.open { display: flex; opacity: 1; }
    .modal-content {
      background: rgba(255, 255, 255, 0.97);
      border: 1px solid rgba(148, 163, 184, 0.2);
      border-radius: 16px;
      width: 90%;
      max-width: 800px;
      max-height: 90vh;
      overflow-y: auto;
      padding: 24px;
      color: #0f172a;
      box-shadow: 0 24px 60px rgba(2, 6, 23, 0.14);
    }
    .modal-header {
      display: flex;
      gap: 16px;
      align-items: center;
      border-bottom: 1px solid rgba(148, 163, 184, 0.18) !important;
      padding-bottom: 16px;
      margin-bottom: 20px;
    }
    .glass-card {
      background: rgba(248, 250, 252, 0.92);
      border: 1px solid rgba(148, 163, 184, 0.18);
      border-radius: 8px;
      box-shadow: 0 12px 28px rgba(2, 6, 23, 0.06);
    }
    .form-control {
      background: #ffffff;
      border: 1px solid rgba(148, 163, 184, 0.24);
      color: #0f172a;
      box-shadow: 0 1px 2px rgba(2, 6, 23, 0.04);
    }
    .form-control:focus {
      outline: none;
      border-color: rgba(20, 184, 166, 0.45);
      box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
    }
    .form-control:disabled {
      background: rgba(241, 245, 249, 0.9);
      color: #475569;
    }
    .btn-primary {
      background: #16B6B0;
      color: #fff;
      border: 1px solid rgba(20, 184, 166, 0.25);
      box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
      border-radius: 12px;
      padding: 12px 18px;
      font-weight: 700;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      min-width: 120px;
      text-align: center;
    }
    .btn-primary:hover {
      background: #0FA7A1;
      box-shadow: 0 8px 30px rgba(20, 184, 166, 0.4);
      transform: translateY(-2px) scale(1.02);
    }
    .btn-primary:active {
      transform: translateY(0) scale(0.98);
    }

    #m-header {
      background: linear-gradient(135deg, #16B6B0, #55D6C2) !important;
      box-shadow: inset 0 -1px 0 rgba(255,255,255,0.18);
    }
    #m-close {
      background: rgba(255,255,255,0.24) !important;
      border-color: rgba(255,255,255,0.36) !important;
      color: #ffffff !important;
    }
    #m-close:hover {
      background: rgba(255,255,255,0.34) !important;
    }
    #m-photo-upload-btn {
      background: #16B6B0 !important;
      border-color: rgba(255,255,255,0.45) !important;
      box-shadow: 0 10px 22px rgba(20,184,166,0.2);
      color: #ffffff !important;
    }
    #m-branch {
      color: #64748b !important;
    }
    #btn-upload-id,
    #btn-upload-health,
    #btn-upload-permit {
      background: rgba(20, 184, 166, 0.1) !important;
      color: #0f766e !important;
      border-color: rgba(20, 184, 166, 0.22) !important;
      box-shadow: 0 6px 16px rgba(20, 184, 166, 0.08);
      font-weight: 700;
    }
    #btn-upload-id:hover,
    #btn-upload-health:hover,
    #btn-upload-permit:hover {
      background: rgba(20, 184, 166, 0.16) !important;
      border-color: rgba(20, 184, 166, 0.3) !important;
      color: #0f172a !important;
    }
    #btn-archive-id,
    #btn-archive-health,
    #btn-archive-permit {
      border-color: rgba(148, 163, 184, 0.22) !important;
      color: #475569 !important;
      background: rgba(255,255,255,0.9);
    }
    #btn-archive-id:hover,
    #btn-archive-health:hover,
    #btn-archive-permit:hover {
      background: rgba(241,245,249,0.96) !important;
      color: #0f766e !important;
      border-color: rgba(20,184,166,0.22) !important;
    }
    #m-save {
      background: rgba(16, 185, 129, 0.1);
      color: #047857 !important;
      border-color: rgba(16, 185, 129, 0.26) !important;
      box-shadow: 0 10px 24px rgba(16, 185, 129, 0.08);
    }
    #m-save:hover {
      background: rgba(16, 185, 129, 0.16) !important;
      color: #065f46 !important;
    }
    #m-close-action {
      background: rgba(255,255,255,0.92);
      color: #475569 !important;
      border-color: rgba(148,163,184,0.24) !important;
    }
    #m-close-action:hover {
      background: rgba(241,245,249,0.96) !important;
      color: #0f172a !important;
    }
    #m-refresh-action {
      background: rgba(59, 130, 246, 0.1);
      color: #1d4ed8 !important;
      border-color: rgba(59, 130, 246, 0.24) !important;
      box-shadow: 0 10px 24px rgba(59, 130, 246, 0.08);
    }
    #m-refresh-action:hover {
      background: rgba(59, 130, 246, 0.16) !important;
      color: #1e3a8a !important;
    }
    #m-docs .glass-card {
      background: rgba(255,255,255,0.94) !important;
      border-color: rgba(148,163,184,0.18) !important;
    }
    #m-docs .text-slate-500,
    #m-doc-id .text-slate-500,
    #m-doc-health .text-slate-500,
    #m-doc-permit .text-slate-500 {
      color: #64748b !important;
    }
    #m-docs .text-blue-300,
    #m-doc-id .text-blue-300,
    #m-doc-health .text-blue-300,
    #m-doc-permit .text-blue-300 {
      color: #0f766e !important;
    }
    #add-close {
      color: #475569 !important;
    }
    #add-close:hover {
      background: rgba(241,245,249,0.96) !important;
      color: #0f172a !important;
    }
