.hrm-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid #eef2f7;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
}

.hrm-form-header {
  margin-bottom: 30px;
}

.hrm-form-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}

.hrm-form-header p {
  margin-top: 6px;
  font-size: 13px;
  color: #6b7280;
}

.hrm-form-section {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
}

.hrm-form-section h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.hrm-label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}

.hrm-input {
  width: 100%;
  height: 48px;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  padding: 0 16px;
  background: #fff;
  font-size: 13px;
  transition: 0.3s;
}

.hrm-input:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.hrm-readonly {
  background: #eef2ff;
  font-weight: 700;
  color: #4338ca;
}

.hrm-info-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.hrm-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.hrm-info-content {
  display: flex;
  flex-direction: column;
}

.hrm-info-content strong {
  font-size: 14px;
  color: #111827;
}

.hrm-info-content span {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

.hrm-submit-btn {
  border: none;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  padding: 14px 28px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hrm-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

@media (max-width: 768px) {
  .hrm-form-card {
    padding: 20px;
  }

  .hrm-form-section {
    padding: 18px;
  }
}
.hrm-employee-table-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  border: 1px solid #eef2f7;
}

.hrm-table-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #edf2f7;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.hrm-table-topbar h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}

.hrm-table-topbar p {
  margin-top: 5px;
  font-size: 13px;
  color: #6b7280;
}

.hrm-add-btn {
  background: #4f46e5;
  color: #fff !important;
  border: none;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hrm-add-btn:hover {
  background: #4338ca;
  transform: translateY(-2px);
}

.hrm-table-wrapper {
  overflow: auto;
}

.hrm-employee-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 1400px;
}

.hrm-employee-table thead {
  background: #f8fafc;
}

.hrm-employee-table th {
  padding: 16px 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  border-bottom: 1px solid #e2e8f0;
}

.hrm-employee-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.hrm-employee-table tbody tr {
  transition: 0.3s;
}

.hrm-employee-table tbody tr:hover {
  background: #f8fafc;
}

.hrm-id-badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #eef2ff;
  color: #4f46e5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.hrm-employee-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hrm-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.hrm-employee-meta strong {
  display: block;
  font-size: 13px;
  color: #111827;
}

.hrm-employee-meta span {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: #6b7280;
}

.hrm-data-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  min-width: 150px;
}

.hrm-data-card span {
  font-size: 14px;
}

.hrm-data-card strong {
  display: block;
  font-size: 12px;
  color: #111827;
  line-height: 1.4;
}

.hrm-data-card small {
  font-size: 10px;
  color: #64748b;
}

.hrm-success {
  background: #dcfce7;
  color: #166534;
}

.hrm-warning {
  background: #fef3c7;
  color: #92400e;
}

.hrm-info {
  background: #dbeafe;
  color: #1d4ed8;
}

.hrm-purple {
  background: #ede9fe;
  color: #6d28d9;
}

.hrm-danger {
  background: #fee2e2;
  color: #dc2626;
}

.hrm-action-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hrm-edit-btn,
.hrm-delete-btn {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.hrm-edit-btn {
  background: #dbeafe;
  color: #2563eb;
}

.hrm-edit-btn:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-2px);
}

.hrm-delete-btn {
  background: #fee2e2;
  color: #dc2626;
}

.hrm-delete-btn:hover {
  background: #dc2626;
  color: #fff;
  transform: translateY(-2px);
}

.hrm-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dcfce7;
  color: #166534;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.hrm-view-btn:hover {
  background: #16a34a;
  color: #fff;
  transform: translateY(-2px);
}

.hrm-empty-state {
  text-align: center;
  padding: 80px 20px;
}

.hrm-empty-state i {
  font-size: 55px;
  color: #cbd5e1;
}

.hrm-empty-state h4 {
  margin-top: 20px;
  font-size: 22px;
  color: #111827;
}

.hrm-empty-state p {
  margin-top: 8px;
  color: #6b7280;
  font-size: 13px;
}

.hrm-modal-card {
  border-radius: 24px;
  overflow: hidden;
}

.hrm-label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.hrm-input {
  width: 100%;
  height: 52px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0 16px;
  font-size: 14px;
  background: #fff;
  transition: 0.3s;
}

.hrm-input:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.hrm-submit-btn {
  border: none;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.hrm-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.2);
}

@media (max-width: 768px) {
  .hrm-table-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
