.app-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.app-header {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 2rem;
}

.app-main {
  flex: 1;
  padding: 2rem;
}

.app-footer {
  background-color: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  padding: 2rem;
  text-align: center;
  color: #666;
}
.card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  transition: 0.2s;
}

.card:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

/* ===== BUTTONS ===== */
.btn {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
  font-size: 0.85rem;
  border: none;
}

/* Primary */
.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

/* Secondary (outline) */
.btn-secondary {
  background-color: white;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Success */
.btn-success {
  background-color: var(--success-color);
  color: white;
}

.btn-success:hover {
  background-color: #15803D;
}

/* Danger */
.btn-danger {
  background-color: var(--danger-color);
  color: white;
}

.btn-danger:hover {
  background-color: #DC2626;
}

/* Small */
.btn-small {
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.85rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.85rem;
  background-color: #FFFFFF;
  transition: 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.15);
}

/* ===== BADGES ===== */
.badge {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* Status badges */
.badge-success {
  background-color: #DCFCE7;
  color: #166534;
}

.badge-warning {
  background-color: #FEF3C7;
  color: #92400E;
}

.badge-danger {
  background-color: #FEE2E2;
  color: #991B1B;
}

.badge-info {
  background-color: #E0E7FF;
  color: #3730A3;
}

/* ===== ALERTS ===== */
.alert {
  padding: 0.7rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.alert-error {
  background-color: #FEF2F2;
  color: #DC2626;
  border-left: 3px solid #DC2626;
}

.alert-success {
  background-color: #DCFCE7;
  color: #166534;
  border-left: 3px solid #16A34A;
}

.alert-warning {
  background-color: #FEF3C7;
  color: #92400E;
  border-left: 3px solid #F59E0B;
}

/* ===== GRID ===== */
.grid {
  display: grid;
  gap: 1rem;
  margin: 1rem 0;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* ===== TABLE ===== */
table {
  width: 100%;
  border-collapse: collapse;
}

/* 🔥 UPDATED HEADER (your requirement) */
thead tr {
  background-color: var(--primary-color);
}

th {
  padding: 0.85rem;
  text-align: left;
  font-weight: 700; /* BOLD */
  color: #FFFFFF;
  font-size: 1rem; /* Increased */
}

td {
  padding: 0.85rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-light);
  font-size: 0.9rem;
}

tbody tr:hover {
  background-color: #F9FAFB;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-muted { color: var(--text-light); font-size: 0.8rem; }

.mt-1 { margin-top: 0.4rem; }
.mt-2 { margin-top: 0.8rem; }
.mt-3 { margin-top: 1.2rem; }
.mt-4 { margin-top: 1.6rem; }

.mb-1 { margin-bottom: 0.4rem; }
.mb-2 { margin-bottom: 0.8rem; }
.mb-3 { margin-bottom: 1.2rem; }
.mb-4 { margin-bottom: 1.6rem; }

.p-1 { padding: 0.4rem; }
.p-2 { padding: 0.8rem; }
.p-3 { padding: 1.2rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  table {
    font-size: 0.85rem;
  }

  th,
  td {
    padding: 0.6rem 0.4rem;
  }
}/* ===== HEADER BASE ===== */
.header {
  background: #F9FAFB;
  color: #1E2A4A;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ===== CONTAINER ===== */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  gap: 2rem;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-btn {
  background: none;
  border: none;
  color: #1E2A4A; /* changed from white */
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-btn:hover {
  transform: scale(1.05);
}

/* ===== NAVIGATION ===== */
.nav {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  color: #374151; /* dark gray */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
  color: #4F46E5; /* accent color */
  border-bottom-color: #4F46E5;
}

/* ===== ACTION BUTTONS ===== */
.auth-section {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-shrink: 0;
}

/* Outline Button */
.btn-login {
  background-color: #1E2A4A;
  color: #FFFFFF;
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-login:hover {
  background-color: #4338CA;
  transform: translateY(-1px);
}

/* Primary Button */
.btn-signup {
  background-color: #1E2A4A;
  color: #FFFFFF;
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-signup:hover {
  background-color: #4338CA;
  transform: translateY(-1px);
}

/* Logout Button */
.btn-logout {
  background-color: #1E2A4A;
  color: #FFFFFF;
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-logout:hover {
  background-color: #4338CA;
  transform: translateY(-1px);
}

/* ===== USER MENU ===== */
.user-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.8rem;
  background: #FFFFFF;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #E5E7EB;
}

.user-info:hover {
  background: #F3F4F6;
}

.user-avatar {
  font-size: 1.2rem;
}

.user-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.user-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: #1E2A4A;
}

.dropdown-arrow {
  font-size: 0.7rem;
  color: #6B7280;
  transition: transform 0.2s ease;
}

.user-info:hover .dropdown-arrow {
  transform: translateY(2px);
}

/* ===== DROPDOWN ===== */
.profile-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: #FFFFFF;
  color: #374151;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 2000;
  overflow: hidden;
  border: 1px solid #E5E7EB;
}

.dropdown-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.7rem 1rem;
  color: #374151;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 0.9rem;
}

.dropdown-item:hover {
  background: #F3F4F6;
  color: #4F46E5;
}

.dropdown-item.logout {
  color: #EF4444;
}

.dropdown-item.logout:hover {
  background: #FEF2F2;
}

.dropdown-divider {
  height: 1px;
  background: #E5E7EB;
  margin: 0.4rem 0;
}

/* ===== MOBILE ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #374151;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: #FFFFFF;
  padding: 1rem;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid #E5E7EB;
}

.mobile-menu-link {
  color: #374151;
  text-decoration: none;
  padding: 0.7rem 1rem;
  border-radius: 6px;
}

.mobile-menu-link:hover {
  background: #F3F4F6;
}

.logo-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.logo-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827; /* dark */
}

.logo-subtitle {
  font-size: 0.75rem;
  color: #6B7280; /* muted gray */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }

  .nav {
    display: none;
  }

  .auth-section {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: flex;
  }
}/* ===== PAGE ===== */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F9FAFB;
  padding: 1rem;
}

/* ===== CONTAINER ===== */
.login-container {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  width: 100%;
  max-width: 380px;
}

/* ===== TITLE ===== */
.login-container h1 {
  text-align: center;
  margin-bottom: 0.3rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}

.login-subtitle {
  text-align: center;
  color: #6B7280;
  font-size: 0.85rem;
  margin-bottom: 1.5rem !important;
}

/* ===== ERROR ===== */
.error-message {
  background-color: #FEF2F2;
  color: #DC2626;
  padding: 0.6rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 0.85rem;
  border-left: 4px solid #DC2626;
}

/* ===== FORM ===== */
.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
  color: #374151;
  font-size: 0.85rem;
}

/* ===== INPUT ===== */
.form-group input {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.9rem;
  background-color: #FAFAFA;
  transition: 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: #4F46E5;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* ===== BUTTON ===== */
.btn-primary {
  width: 100%;
  padding: 0.65rem;
  background-color: #4F46E5;
  color: white;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover:not(:disabled) {
  background-color: #4338CA;
}

.btn-primary:disabled {
  background-color: #D1D5DB;
  cursor: not-allowed;
}

/* ===== FOOTER TEXT ===== */
.login-container p {
  text-align: center;
  margin-top: 1.2rem;
  color: #6B7280;
  font-size: 0.8rem;
}

.login-container a {
  color: #4F46E5;
  text-decoration: none;
  font-weight: 500;
}

.login-container a:hover {
  text-decoration: underline;
}

/* ===== RADIO GROUP ===== */
.radio-group {
  display: flex;
  gap: 1rem;
  margin-top: 0.4rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.radio-option input[type="radio"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #4F46E5;
}

.radio-option label {
  margin: 0;
  font-weight: 500;
  cursor: pointer;
  color: #374151;
  font-size: 0.85rem;
}/* ===== PAGE ===== */
.signup-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F9FAFB;
  padding: 1rem;
}

/* ===== CONTAINER ===== */
.signup-container {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  width: 100%;
  max-width: 380px;
}

/* ===== TITLE ===== */
.signup-container h1 {
  text-align: center;
  margin-bottom: 0.3rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}

.signup-subtitle {
  text-align: center;
  color: #6B7280;
  font-size: 0.85rem;
  margin-bottom: 1.5rem !important;
}

/* ===== ERROR ===== */
.error-message {
  background-color: #FEF2F2;
  color: #DC2626;
  padding: 0.6rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 0.85rem;
  border-left: 4px solid #DC2626;
}

/* ===== FORM ===== */
.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
  color: #374151;
  font-size: 0.85rem;
}

/* ===== RADIO ===== */
.radio-group {
  display: flex;
  gap: 1rem;
  margin-top: 0.4rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.radio-option input[type="radio"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #4F46E5;
}

.radio-option label {
  margin: 0;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  color: #374151;
  font-size: 0.85rem;
}

/* ===== INPUT ===== */
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.9rem;
  background-color: #FAFAFA;
  transition: 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #4F46E5;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* ===== BUTTON ===== */
.btn-primary {
  width: 100%;
  padding: 0.65rem;
  background-color: #4F46E5;
  color: white;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover:not(:disabled) {
  background-color: #4338CA;
}

.btn-primary:disabled {
  background-color: #D1D5DB;
  cursor: not-allowed;
}

/* ===== FOOTER TEXT ===== */
.signup-container p {
  text-align: center;
  margin-top: 1.2rem;
  color: #6B7280;
  font-size: 0.8rem;
}

.signup-container a {
  color: #4F46E5;
  text-decoration: none;
  font-weight: 500;
}

.signup-container a:hover {
  text-decoration: underline;
}.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-field .required {
  color: #c41e3a;
  font-weight: bold;
}

.form-input {
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: #0f67ef;
  box-shadow: 0 0 0 3px rgba(15, 103, 239, 0.1);
}

.form-input:disabled {
  background: #f5f5f5;
  color: #757575;
  cursor: not-allowed;
  border-color: #e0e0e0;
}

.form-input.has-error {
  border-color: #d32f2f;
  background: #ffebee;
}

.form-input.has-error:focus {
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.error-text {
  color: #d32f2f;
  font-size: 12px;
  font-weight: 500;
}

.form-field.disabled {
  opacity: 0.7;
}

textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

select.form-input {
  cursor: pointer;
}

select.form-input:disabled {
  cursor: not-allowed;
}.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  min-width: 300px;
  padding: 12px 16px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: slideIn 0.3s ease-in-out;
  z-index: 9999;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

.toast-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.toast-error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.toast-info {
  background: #d1ecf1;
  border: 1px solid #bee5eb;
  color: #0c5460;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.toast-icon {
  font-weight: bold;
  font-size: 18px;
}

.toast-message {
  font-size: 14px;
  font-weight: 500;
}

.toast-close {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  margin-left: 12px;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.toast-close:hover {
  opacity: 1;
}/* ===== PAGE ===== */
.change-password-page {
  min-height: 100vh;
  background-color: #F9FAFB;
  padding: 2rem 1rem;
}

/* ===== CONTAINER ===== */
.change-password-container {
  max-width: 600px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  padding: 1.8rem;
}

/* ===== HEADER ===== */
.change-password-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.change-password-header h1 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

/* ===== FORM ===== */
.change-password-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* ===== FORM ACTIONS ===== */
.form-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background-color: #4F46E5;
  color: white;
  padding: 0.65rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover:not(:disabled) {
  background-color: #4338CA;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-secondary {
  background-color: #6B7280;
  color: white;
  padding: 0.65rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-secondary:hover:not(:disabled) {
  background-color: #4B5563;
}

.btn-secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}.recruiter-dashboard {
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 2rem 1rem;
}

.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dashboard-container h1 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #333;
}

.error-message {
  background-color: #fadbd8;
  color: #e74c3c;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid #e74c3c;
}

.loading-message {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  color: #666;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #667eea;
}

.stat-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.stat-card h3 {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #667eea;
  margin: 0;
}

.dashboard-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-action {
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
}

.btn-primary {
  background-color: #667eea;
  color: white;
}

.btn-primary:hover {
  background-color: #5568d3;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
  background-color: white;
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-secondary:hover {
  background-color: #667eea;
  color: white;
}

@media (max-width: 768px) {
  .dashboard-container h1 {
    font-size: 1.5rem;
  }

  .dashboard-actions {
    flex-direction: column;
  }

  .btn-action {
    width: 100%;
    min-width: auto;
  }

  .stat-number {
    font-size: 2rem;
  }
}
.create-job-page {
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 2rem 1rem;
}

.create-job-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.create-job-container h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.error-message {
  background-color: #fadbd8;
  color: #e74c3c;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #e74c3c;
}

.success-message {
  background-color: #d5f4e6;
  color: #27ae60;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  border-left: 4px solid #27ae60;
}

.job-form {
  margin-top: 2rem;
}

.form-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #333;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #667eea;
  display: inline-block;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  background-color: #fafafa;
  transition: all 0.3s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #667eea;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f0f0f0;
}

.btn-post,
.btn-cancel {
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
}

.btn-post {
  background-color: #667eea;
  color: white;
  flex: 1;
}

.btn-post:hover:not(:disabled) {
  background-color: #5568d3;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-post:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.btn-cancel {
  background-color: #e0e0e0;
  color: #333;
  flex: 1;
}

.btn-cancel:hover:not(:disabled) {
  background-color: #d0d0d0;
}

.btn-cancel:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .create-job-container {
    padding: 1.5rem;
  }

  .create-job-container h1 {
    font-size: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-post,
  .btn-cancel {
    min-width: auto;
    width: 100%;
  }
}
/* ===== PAGE ===== */
.job-applications-page {
  min-height: 100vh;
  background-color: #F9FAFB;
  padding: 2rem 1rem;
}

.applications-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== BACK BUTTON ===== */
.btn-back {
  background-color: #1E2A4A;
  color: #FFFFFF;
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
  margin-bottom: 1rem;
}

.btn-back:hover {
  background-color: #4338CA;
  transform: translateY(-1px);
}

/* ===== HEADER ===== */
.page-header {
  margin-bottom: 1.2rem;
}

.page-header h1 {
  font-size: 1.5rem;
  color: #111827;
  margin: 0;
  font-weight: 600;
}

.page-header span {
  color: #4F46E5;
}

/* ===== ERROR ===== */
.error-message {
  background-color: #FEF2F2;
  color: #DC2626;
  padding: 0.7rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid #DC2626;
  font-size: 0.85rem;
}

/* ===== LOADING ===== */
.loading-message {
  text-align: center;
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
  color: #6B7280;
}

/* ===== EMPTY ===== */
.empty-state {
  text-align: center;
  padding: 2rem;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  color: #9CA3AF;
}

/* ===== RESULTS ===== */
.results-info {
  margin-bottom: 1rem;
  padding: 0.7rem;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  font-size: 0.85rem;
  color: #6B7280;
}

/* ===== LIST ===== */
.applications-list {
  display: grid;
  gap: 1rem;
}

/* ===== CARD ===== */
.application-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.2rem;
  border: 1px solid #E5E7EB;
  transition: 0.2s;
}

.application-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

/* ===== HEADER ===== */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #E5E7EB;
}

.applicant-info h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  color: #111827;
}

.applicant-email {
  margin: 0;
  color: #4F46E5;
  font-size: 0.8rem;
}

/* ===== STATUS BADGE ===== */
.status-badge {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Status Colors */
.status-applied {
  background: #FEF3C7;
  color: #92400E;
}

.status-recruiter_review {
  background: #DBEAFE;
  color: #1E40AF;
}

.status-shortlisted {
  background: #E0E7FF;
  color: #3730A3;
}

.status-forwarded_to_hr {
  background: #F3E8FF;
  color: #6B21A8;
}

.status-interview_scheduled {
  background: #DCFCE7;
  color: #166534;
}

.status-hired {
  background: #D1FAE5;
  color: #065F46;
}

.status-rejected {
  background: #FEE2E2;
  color: #991B1B;
}

/* ===== DETAILS ===== */
.app-details {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background-color: #F9FAFB;
  border-radius: 8px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.detail-item strong {
  color: #374151;
  min-width: 110px;
  font-size: 0.8rem;
}

.detail-item span,
.detail-item p {
  color: #6B7280;
  font-size: 0.8rem;
  flex: 1;
}

/* Resume */
.resume-link {
  color: #4F46E5;
  font-weight: 500;
  text-decoration: none;
}

.resume-link:hover {
  text-decoration: underline;
}

/* ===== ACTIONS ===== */
.app-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 0.6rem;
  border-top: 1px solid #E5E7EB;
}

/* Status Dropdown */
.status-selector {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.status-selector label {
  font-size: 0.8rem;
  color: #374151;
}

.status-dropdown {
  padding: 0.45rem 0.6rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.8rem;
}

.status-dropdown:focus {
  outline: none;
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Buttons */
.btn-message,
.btn-reject {
  background-color: #1E2A4A;
  color: #FFFFFF;
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* Primary */
.btn-message {
  background-color: #1E2A4A;
  color: white;
}

.btn-message:hover {
  background-color: #4338CA;
  transform: translateY(-1px);
}

/* Danger */
.btn-reject {
  background-color: #1E2A4A;
  color: white;
}

.btn-reject:hover {
  background-color: #4338CA;
  transform: translateY(-1px);
}

/* ===== FILTER ===== */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.filter-bar label {
  font-size: 0.85rem;
  color: #374151;
}

.filter-bar select {
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  font-size: 0.8rem;
}

/* ===== TABLE ===== */
.table-wrapper {
  overflow-x: auto;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
}

.applications-table {
  width: 100%;
  border-collapse: collapse;
}

.applications-table th {
  background: #F9FAFB;
  text-align: left;
  font-size: 0.8rem;
  color: #6B7280;
  padding: 0.75rem;
  border-bottom: 1px solid #E5E7EB;
}

.applications-table td {
  padding: 0.75rem;
  font-size: 0.85rem;
  color: #374151;
  border-bottom: 1px solid #F3F4F6;
}

.applications-table tr:hover {
  background: #F9FAFB;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-box {
  background: #FFFFFF;
  padding: 1.5rem;
  border-radius: 12px;
  width: 300px;
  border: 1px solid #E5E7EB;
}

.modal-box h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #111827;
}

.modal-box select {
  width: 100%;
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  margin-bottom: 1rem;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 1.2rem;
  }

  .app-header {
    flex-direction: column;
  }

  .app-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .status-selector {
    flex-direction: column;
    align-items: flex-start;
  }

  .status-dropdown {
    width: 100%;
  }

  .btn-message,
  .btn-reject {
    width: 100%;
  }

  .detail-item {
    flex-direction: column;
  }

  .detail-item strong {
    min-width: auto;
  }
}.create-job-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.create-job-modal-content {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.create-job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.create-job-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.close-btn:hover:not(:disabled) {
  color: #333;
}

.close-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.create-job-form {
  padding: 24px;
}

.error-message {
  background-color: #fee;
  border: 1px solid #fcc;
  color: #c33;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 14px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.6;
}

.form-group input.input-error,
.form-group select.input-error {
  border-color: #dc3545;
  background-color: #fff5f5;
}

.form-group input.input-error:focus,
.form-group select.input-error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.field-error {
  display: block;
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.textarea-field {
  resize: vertical;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .create-job-modal-content {
    width: 95%;
    max-height: 95vh;
  }
}

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
  margin-top: 24px;
}

.cancel-btn,
.submit-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.cancel-btn {
  background-color: #e9ecef;
  color: #333;
}

.cancel-btn:hover:not(:disabled) {
  background-color: #dee2e6;
}

.submit-btn {
  background-color: #28a745;
  color: white;
}

.submit-btn:hover:not(:disabled) {
  background-color: #218838;
}

.cancel-btn:disabled,
.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Success Modal Styles */
.success-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.success-modal {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  width: 90%;
  animation: slideUp 0.3s ease-out;
}

.success-modal-content {
  padding: 40px 24px;
  text-align: center;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #28a745;
  color: white;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-weight: bold;
}

.success-modal-content h2 {
  margin: 0 0 12px 0;
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.success-modal-content p {
  margin: 0 0 24px 0;
  font-size: 14px;
  color: #666;
}

.success-ok-btn {
  background-color: #28a745;
  color: white;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: inherit;
}

.success-ok-btn:hover {
  background-color: #218838;
}

.success-ok-btn:active {
  transform: scale(0.98);
}
.jobs-page {
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 20px;
}

.jobs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.jobs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.jobs-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.btn-post-job {
  padding: 10px 20px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: inherit;
}

.btn-post-job:hover {
  background-color: #218838;
}

.jobs-filters {
  background: white;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-group label {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.status-filter {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background-color: white;
  cursor: pointer;
  min-width: 120px;
}

.status-filter:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.loading,
.error {
  padding: 12px 16px;
  margin: 16px 0;
  border-radius: 4px;
  font-weight: 600;
}

.loading {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.jobs-list {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

thead tr {
  border-bottom: 2px solid #ddd;
  background-color: #f9f9f9;
}

th {
  text-align: left;
  padding: 12px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

tbody tr:hover {
  background-color: #f9f9f9;
}

.job-title {
  font-weight: 600;
  color: #333;
}

.no-data {
  text-align: center;
  color: #666;
  padding: 40px 12px;
}

.status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.status-open {
  background-color: #d4edda;
  color: #155724;
}

.status-closed {
  background-color: #f8d7da;
  color: #721c24;
}

.status-draft {
  background-color: #e7e8eb;
  color: #383d41;
}

.status:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.actions-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.btn-action {
  background-color: #1E2A4A;
  color: #FFFFFF;
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
  width: 100%;
  text-align: left;
}

.btn-action:hover {
  background-color: #4338CA;
  transform: translateY(-1px);
}

.btn-action:active {
  transform: scale(0.96);
}

.btn-action:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
}

.btn-action.btn-delete {
  background-color: #dc3545;
}

.btn-action.btn-delete:hover:not(:disabled) {
  background-color: #c82333;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #ddd;
}

.btn-pagination {
  padding: 8px 16px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s ease;
  font-family: inherit;
}

.btn-pagination:hover:not(:disabled) {
  background-color: #0056b3;
}

.btn-pagination:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.pagination-info {
  font-weight: 500;
  color: #666;
}

/* Delete Confirmation Modal */
.delete-confirm-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.delete-confirm-content {
  background: white;
  border-radius: 8px;
  padding: 30px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease-out;
}

.delete-confirm-content h3 {
  margin: 0 0 16px 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.delete-confirm-content p {
  margin: 0 0 24px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.delete-confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-cancel,
.btn-delete-confirm {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: inherit;
  font-size: 14px;
}

.btn-cancel {
  background-color: #6c757d;
  color: white;
}

.btn-cancel:hover:not(:disabled) {
  background-color: #5a6268;
}

.btn-delete-confirm {
  background-color: #dc3545;
  color: white;
  flex: 1;
}

.btn-delete-confirm:hover:not(:disabled) {
  background-color: #c82333;
}

.btn-cancel:disabled,
.btn-delete-confirm:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Status Change Modal */
.status-change-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.status-change-modal-content {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease-out;
  max-width: 500px;
  width: 90%;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 20px;
}

.modal-body > p {
  margin: 0 0 16px 0;
  color: #666;
  font-size: 14px;
}

.status-options {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.status-btn {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
  color: #333;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: 14px;
}

.status-btn:hover:not(:disabled) {
  border-color: #007bff;
  background-color: #e7f1ff;
}

.status-btn.active {
  border-color: #28a745;
  background-color: #d4edda;
  color: #155724;
}

.status-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 16px 20px;
  border-top: 1px solid #eee;
  gap: 12px;
}

/* ===== PAGE ===== */
.admin-dashboard {
  min-height: 100vh;
  background-color: #F9FAFB;
  padding: 2rem 1rem;
}

.dashboard-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.dashboard-container h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #111827;
  font-weight: 600;
}

/* ===== TABS ===== */
.dashboard-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid #E5E7EB;
}

.tab-btn {
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #6B7280;
  cursor: pointer;
  border-radius: 6px 6px 0 0;
  transition: 0.2s;
}

.tab-btn:hover {
  color: #111827;
  background-color: #F3F4F6;
}

.tab-btn.active {
  color: #4F46E5;
  border-bottom: 2px solid #4F46E5;
  background-color: #EEF2FF;
}

/* ===== CONTENT ===== */
.tab-content {
  background: #FFFFFF;
  padding: 1.4rem;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
}

/* ===== ERROR ===== */
.error-message {
  background-color: #FEF2F2;
  color: #DC2626;
  padding: 0.7rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid #DC2626;
  font-size: 0.85rem;
}

/* ===== LOADING ===== */
.loading-message {
  text-align: center;
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
  color: #6B7280;
}

/* ===== STATS GRID ===== */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* ===== STAT CARD ===== */
.stat-card {
  background: #FFFFFF;
  padding: 1.4rem;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  text-align: center;
  transition: 0.2s;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

/* Label */
.stat-card h3 {
  color: #6B7280;
  margin-bottom: 0.6rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Number */
.stat-number {
  font-size: 2.2rem;
  font-weight: 600;
  color: #4F46E5;
}

/* ===== SMALL CARDS ===== */
.stat-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.stat-card-small {
  background: #FFFFFF;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
  text-align: center;
}

.stat-card-small h4 {
  margin-bottom: 0.5rem;
  color: #6B7280;
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* Count */
.count {
  font-size: 1.6rem;
  font-weight: 600;
  color: #4F46E5;
}

.count.warning {
  color: #F59E0B;
}

/* ===== ACTION BUTTONS ===== */
.dashboard-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Base */
.btn-action {
  padding: 0.55rem 1.2rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: 0.2s;
}

/* Primary */
.btn-primary {
  background-color: #4F46E5;
  color: white;
}

.btn-primary:hover {
  background-color: #4338CA;
}

/* Secondary */
.btn-secondary {
  background-color: #FFFFFF;
  color: #4F46E5;
  border: 1px solid #4F46E5;
}

.btn-secondary:hover {
  background-color: #EEF2FF;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .dashboard-container h1 {
    font-size: 1.4rem;
  }

  .dashboard-actions {
    flex-direction: column;
  }

  .btn-action {
    width: 100%;
  }

  .stat-number {
    font-size: 1.8rem;
  }
}/* ===== PAGE ===== */
.admin-users-page {
  min-height: 100vh;
  background-color: #F9FAFB;
  padding: 2rem 1rem;
}

.users-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.page-header {
  margin-bottom: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.page-header h1 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111827;
}

/* Primary Button */
.btn-add-user {
  background-color: #1E2A4A;
  color: #FFFFFF;
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-add-user:hover {
  background-color: #4338CA;
  transform: translateY(-1px);
}

/* ===== FILTER ===== */
.filter-form {
  background: #FFFFFF;
  padding: 1.2rem;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  margin-bottom: 1.5rem;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.filter-input {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.9rem;
}

.filter-input:focus {
  outline: none;
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.btn-search {
  background-color: #1E2A4A;
  color: #FFFFFF;
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-search:hover {
  background-color: #4338CA;
  transform: translateY(-1px);
}

/* ===== ALERT ===== */
.error-message {
  background-color: #FEF2F2;
  color: #DC2626;
  padding: 0.8rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid #DC2626;
}

/* ===== INFO ===== */
.results-info {
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  font-size: 0.85rem;
  color: #6B7280;
}

/* ===== TABLE WRAPPER ===== */
.users-list {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  padding: 1rem;
  overflow-x: auto;
}

/* ===== TABLE ===== */
.users-table {
  width: 100%;
  border-collapse: collapse;
}

/* Header */
.users-table thead {
  background-color: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
}

.users-table th {
  padding: 0.9rem;
  text-align: left;
  font-weight: 600;
  color: #374151;
  font-size: 0.8rem;
}

/* Rows */
.user-row {
  border-bottom: 1px solid #F3F4F6;
  transition: background 0.2s ease;
}

.user-row:hover {
  background-color: #F9FAFB;
}

.users-table td {
  padding: 0.9rem;
  color: #4B5563;
  font-size: 0.85rem;
}

/* Email highlight */
.email {
  font-weight: 600;
  color: #4F46E5;
}

/* ===== BADGES ===== */
.badge {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 500;
}

/* Keep subtle tones */
.badge-job_seeker {
  background: #EEF2FF;
  color: #4F46E5;
}

.badge-recruiter {
  background: #ECFEFF;
  color: #0891B2;
}

.badge-hr {
  background: #FEF3C7;
  color: #92400E;
}

.badge-admin {
  background: #FEE2E2;
  color: #B91C1C;
}

/* ===== STATUS ===== */
.status {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.status.active {
  background: #ECFDF5;
  color: #059669;
}

.status.inactive {
  background: #FEF2F2;
  color: #DC2626;
}

/* ===== ACTIONS ===== */
.actions {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

/* Primary */
.btn-view {
  background-color: #1E2A4A;
  color: #FFFFFF;
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* Secondary */
.btn-role-select,
.btn-status-select {
  background-color: #1E2A4A;
  color: #FFFFFF;
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-delete {
  background-color: #1E2A4A;
  color: #FFFFFF;
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* Hover */
.btn-view:hover {
  background-color: #4338CA;
  transform: translateY(-1px);
}

.btn-delete:hover {
  background-color: #4338CA;
  transform: translateY(-1px);
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem;
  margin-top: 1.5rem;
  background: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
}

.btn-pagination {
  background-color: #1E2A4A;
  color: #FFFFFF;
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-pagination:hover:not(:disabled) {
  background-color: #4338CA;
  transform: translateY(-1px);
}

.btn-pagination:disabled {
  background: #D1D5DB;
  cursor: not-allowed;
  transform: none;
}

.page-info {
  color: #6B7280;
  font-size: 0.85rem;
}

/* ===== CHANGE PASSWORD BUTTON ===== */
.btn-change-password {
  background-color: #1E2A4A;
  color: #FFFFFF;
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-change-password:hover {
  background-color: #4338CA;
  transform: translateY(-1px);
}

/* ===== MODAL OVERLAY ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* ===== MODAL CONTENT ===== */
.modal-content {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 450px;
  width: 90%;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modal Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #E5E7EB;
}

.modal-header h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6B7280;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #111827;
}

/* Modal Body */
.modal-body {
  padding: 1.5rem;
}

.modal-body p {
  margin-bottom: 1rem;
  color: #374151;
  font-size: 0.9rem;
}

/* Modal Form */
.modal-form {
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: #374151;
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-group input:disabled {
  background: #F9FAFB;
  color: #9CA3AF;
  cursor: not-allowed;
}

/* Modal Actions */
.modal-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.btn-cancel {
  background-color: #1E2A4A;
  color: #FFFFFF;
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-cancel:hover:not(:disabled) {
  background-color: #4338CA;
  transform: translateY(-1px);
}

.btn-submit {
  background-color: #1E2A4A;
  color: #FFFFFF;
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-submit:hover:not(:disabled) {
  background-color: #4338CA;
  transform: translateY(-1px);
}

.btn-cancel:disabled,
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}/* ===== PAGE ===== */
.add-user-page {
  min-height: 100vh;
  background-color: #F9FAFB;
  padding: 2rem 1rem;
}

/* ===== CONTAINER ===== */
.form-container {
  max-width: 780px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 1.8rem;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
}

/* ===== HEADER ===== */
.form-header {
  margin-bottom: 1.8rem;
}

.form-header h1 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.3rem;
}

.form-header p {
  color: #6B7280;
  font-size: 0.9rem;
}

/* ===== ALERTS ===== */
.alert {
  padding: 0.8rem;
  border-radius: 8px;
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
}

.alert-error {
  background-color: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FECACA;
  border-left: 4px solid #DC2626;
}

.alert-success {
  background-color: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0;
  border-left: 4px solid #10B981;
}

/* ===== FORM ===== */
.user-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Rows */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row.full {
  grid-template-columns: 1fr;
}

/* ===== INPUTS ===== */
.form-group label {
  margin-bottom: 0.35rem;
  color: #374151;
  font-weight: 500;
  font-size: 0.85rem;
}

.form-group input,
.form-group select {
  padding: 0.6rem 0.65rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: 0.2s;
}

/* Focus */
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Error State */
.form-group input.input-error,
.form-group select.input-error {
  border-color: #DC2626;
  background-color: #FEF2F2;
}

.form-group input.input-error:focus,
.form-group select.input-error:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.error-message {
  color: #DC2626;
  font-size: 0.75rem;
  margin-top: 0.3rem;
}

/* ===== CHECKBOX ===== */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: #374151;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #4F46E5;
  cursor: pointer;
}

/* ===== ACTIONS ===== */
.form-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #E5E7EB;
}

/* Primary */
.btn-submit {
  padding: 0.6rem 1.6rem;
  background-color: #4F46E5;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.2s;
}

.btn-submit:hover:not(:disabled) {
  background-color: #4338CA;
}

/* Secondary */
.btn-cancel {
  padding: 0.6rem 1.6rem;
  background-color: #F3F4F6;
  color: #374151;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.2s;
}

.btn-cancel:hover {
  background-color: #E5E7EB;
}

/* Disabled */
.btn-submit:disabled,
.btn-cancel:disabled {
  background-color: #D1D5DB;
  cursor: not-allowed;
  opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 1.4rem;
  }

  .form-actions {
    flex-direction: column-reverse;
  }

  .btn-submit,
  .btn-cancel {
    width: 100%;
  }
}/* ===== PAGE ===== */
.admin-companies-page {
  min-height: 100vh;
  background-color: #F9FAFB;
  padding: 2rem 1rem;
}

.companies-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.page-header {
  margin-bottom: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-header h1 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111827;
}

/* Primary Button */
.btn-add-company {
  padding: 0.55rem 1.2rem;
  background-color: #4F46E5;
  color: white;
  border-radius: 8px;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-add-company:hover {
  background-color: #4338CA;
}

/* ===== FILTER ===== */
.filter-form {
  background: #FFFFFF;
  padding: 1.2rem;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  margin-bottom: 1.5rem;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.filter-input {
  padding: 0.6rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.9rem;
}

.filter-input:focus {
  outline: none;
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.btn-search {
  padding: 0.6rem 1.2rem;
  background-color: #4F46E5;
  color: white;
  border-radius: 8px;
  font-size: 0.85rem;
  border: none;
}

.btn-search:hover {
  background-color: #4338CA;
}

/* ===== ALERT ===== */
.error-message {
  background-color: #FEF2F2;
  color: #DC2626;
  padding: 0.8rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid #DC2626;
}

/* ===== INFO ===== */
.results-info {
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  font-size: 0.85rem;
  color: #6B7280;
}

/* ===== TABLE WRAPPER ===== */
.companies-list {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  padding: 1rem;
  overflow-x: auto;
}

/* ===== TABLE ===== */
.companies-table {
  width: 100%;
  border-collapse: collapse;
}

.companies-table thead {
  background-color: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
}

.companies-table th {
  padding: 0.9rem;
  text-align: left;
  font-weight: 600;
  color: #374151;
  font-size: 0.8rem;
}

.company-row {
  border-bottom: 1px solid #F3F4F6;
}

.company-row:hover {
  background-color: #F9FAFB;
}

.companies-table td {
  padding: 0.9rem;
  color: #4B5563;
  font-size: 0.85rem;
}

/* Highlight */
.company-name {
  font-weight: 600;
  color: #4F46E5;
}

/* Links */
.website a {
  color: #4F46E5;
  font-weight: 500;
  text-decoration: none;
}

.website a:hover {
  text-decoration: underline;
}

/* ===== STATUS BADGES ===== */
.status-badge {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 500;
}

.status-pending {
  background: #FEF3C7;
  color: #92400E;
}

.status-verified {
  background: #ECFDF5;
  color: #059669;
}

.status-rejected {
  background: #FEE2E2;
  color: #B91C1C;
}

/* Active/Inactive */
.status {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.status.active {
  background: #ECFDF5;
  color: #059669;
}

.status.inactive {
  background: #FEF2F2;
  color: #DC2626;
}

/* ===== ACTIONS ===== */
.actions {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.btn-view {
  background: #4F46E5;
  color: white;
  border-radius: 6px;
  padding: 0.4rem 0.7rem;
  font-size: 0.75rem;
}

.btn-view:disabled {
  background: #d1d5db;
  cursor: not-allowed;
  opacity: 0.65;
}

.btn-verify,
.btn-reject {
  background: #F3F4F6;
  color: #374151;
  border-radius: 6px;
  padding: 0.4rem 0.7rem;
  font-size: 0.75rem;
}

.btn-reject {
  background: #DC2626;
  color: white;
}

.btn-view:hover {
  background: #4338CA;
}

.btn-reject:hover {
  background: #B91C1C;
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem;
  margin-top: 1.5rem;
  background: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
}

.btn-pagination {
  padding: 0.5rem 1rem;
  background: #4F46E5;
  color: white;
  border-radius: 6px;
}

/* ===== STATUS MODAL ===== */
.status-change-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.status-change-modal-content {
  width: min(600px, 90%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  overflow: hidden;
}

.status-change-modal-content .modal-header,
.status-change-modal-content .modal-body,
.status-change-modal-content .modal-footer {
  padding: 1rem;
}

.status-change-modal-content .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E5E7EB;
}

.status-change-modal-content .modal-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.status-change-modal-content .modal-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
}

.status-change-modal-content .status-options {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.7rem;
}

.status-change-modal-content .status-btn {
  flex: 1;
  padding: 0.55rem 0;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.status-change-modal-content .status-btn.active {
  background: #4F46E5;
  color: #fff;
  border-color: #4F46E5;
}

.status-change-modal-content .btn-cancel {
  background: #F3F4F6;
  border: 1px solid #D1D5DB;
  color: #374151;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

  border: none;
  font-size: 0.85rem;
}

.btn-pagination:hover:not(:disabled) {
  background: #4338CA;
}

.btn-pagination:disabled {
  background: #D1D5DB;
  cursor: not-allowed;
}

.page-info {
  color: #6B7280;
  font-size: 0.85rem;
}/* ===== PAGE ===== */
.admin-candidates-page {
  min-height: 100vh;
  background-color: #F9FAFB;
  padding: 2rem 1rem;
}

.candidates-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.page-header {
  margin-bottom: 1.8rem;
}

.page-header h1 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

/* ===== ALERT ===== */
.error-message {
  background-color: #FEF2F2;
  color: #DC2626;
  padding: 0.8rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid #DC2626;
}

.loading-message,
.no-candidates {
  padding: 1rem;
  text-align: center;
  color: #6B7280;
  font-size: 0.95rem;
}

/* ===== INFO ===== */
.results-info {
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  font-size: 0.85rem;
  color: #6B7280;
}

/* ===== TABLE WRAPPER ===== */
.candidates-list {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  padding: 1rem;
  overflow-x: auto;
}

/* ===== TABLE ===== */
.candidates-table {
  width: 100%;
  border-collapse: collapse;
}

/* Header */
.candidates-table thead {
  background-color: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
}

.candidates-table th {
  padding: 0.9rem;
  text-align: left;
  font-weight: 600;
  color: #374151;
  font-size: 0.8rem;
}

/* Rows */
.candidate-row {
  border-bottom: 1px solid #F3F4F6;
  transition: background 0.2s ease;
}

.candidate-row:hover {
  background-color: #F9FAFB;
}

.candidates-table td {
  padding: 0.9rem;
  color: #4B5563;
  font-size: 0.85rem;
}

/* Name and Email highlight */
.name {
  font-weight: 600;
  color: #111827;
}

.email {
  color: #4F46E5;
}

.phone {
  color: #666;
}

.last-login {
  color: #666;
}

/* ===== BUTTONS ===== */
.btn-view-profile {
  background: #4F46E5;
  color: white;
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 500;
}

.btn-view-profile:hover {
  background: #4338CA;
}

.actions {
  display: flex;
  gap: 0.4rem;
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem;
  margin-top: 1.5rem;
  background: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
}

.btn-pagination {
  padding: 0.5rem 1rem;
  background: #4F46E5;
  color: white;
  border-radius: 6px;
  border: none;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 500;
}

.btn-pagination:hover:not(:disabled) {
  background: #4338CA;
}

.btn-pagination:disabled {
  background: #D1D5DB;
  cursor: not-allowed;
}

.page-info {
  color: #6B7280;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
}
/* ===== PAGE ===== */
.candidate-page {
  min-height: 100vh;
  background-color: #F9FAFB;
  padding: 2rem 1rem;
}

.candidate-container {
  max-width: 900px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.profile-header {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-back {
  background-color: #1E2A4A;
  color: #FFFFFF;
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-back:hover {
  background-color: #4338CA;
  transform: translateY(-1px);
}

.candidate-name {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

/* ===== SECTIONS ===== */
.profile-section {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.section-title {
  padding: 1.2rem;
  background: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
}

.section-title h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.section-content {
  padding: 1.5rem;
}

/* ===== INFO GRID ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-item {
  display: flex;
  flex-direction: column;
}

.info-item label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6B7280;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-item p {
  font-size: 0.95rem;
  color: #111827;
  margin: 0;
  line-height: 1.5;
}

/* ===== BADGES ===== */
.status-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-badge.active {
  background: #D1FAE5;
  color: #065F46;
}

.status-badge.inactive {
  background: #FEE2E2;
  color: #991B1B;
}

.role-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: #EEF2FF;
  color: #4F46E5;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===== PLACEHOLDER ===== */
.placeholder-text {
  color: #9CA3AF;
  font-style: italic;
  padding: 2rem;
  text-align: center;
  background: #F9FAFB;
  border-radius: 8px;
  margin: 0;
}

.loading-message,
.error-message,
.no-data {
  padding: 1rem;
  text-align: center;
  border-radius: 8px;
}

.loading-message {
  color: #0C5460;
  background: #D1ECF1;
}

.error-message {
  color: #721C24;
  background: #F8D7DA;
  margin-bottom: 1rem;
}

.no-data {
  color: #6B7280;
  background: #F3F4F6;
  margin-bottom: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .profile-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .candidate-name {
    font-size: 1.5rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
/* ===== PAGE ===== */
.create-company-page {
  min-height: 100vh;
  background-color: #F9FAFB;
  padding: 2rem 1rem;
}

/* ===== CONTAINER ===== */
.create-company-container {
  max-width: 820px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.8rem;
  border: 1px solid #E5E7EB;
}

/* ===== BACK BUTTON ===== */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
  padding: 0.45rem 1rem;
  background-color: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  color: #374151;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.85rem;
  transition: 0.2s;
}

.btn-back:hover {
  background-color: #E5E7EB;
}

/* ===== HEADER ===== */
.create-company-container h1 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #111827;
  font-weight: 600;
}

/* ===== ERROR ===== */
.error-message {
  background-color: #FEF2F2;
  color: #DC2626;
  padding: 0.8rem;
  border-radius: 8px;
  margin-bottom: 1.2rem;
  border-left: 4px solid #DC2626;
  font-size: 0.85rem;
}

/* ===== FORM ===== */
.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  margin-bottom: 0.35rem;
  display: block;
  font-weight: 500;
  color: #374151;
  font-size: 0.85rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: 0.2s;
  font-family: inherit;
}

/* Focus */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* ===== BUTTON ===== */
.btn-create {
  padding: 0.6rem 1.6rem;
  background-color: #4F46E5;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
}

.btn-create:hover:not(:disabled) {
  background-color: #4338CA;
}

.btn-create:disabled {
  background-color: #D1D5DB;
  cursor: not-allowed;
}

/* ===== SUCCESS POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 24, 39, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-content {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 1.8rem;
  max-width: 360px;
  width: 90%;
  border: 1px solid #E5E7EB;
  text-align: center;
  animation: fadeScale 0.25s ease;
}

/* Animation */
@keyframes fadeScale {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Icon */
.popup-icon {
  width: 52px;
  height: 52px;
  background-color: #EEF2FF;
  color: #4F46E5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 0.8rem;
}

/* Text */
.popup-content h2 {
  margin: 0.6rem 0;
  color: #111827;
  font-size: 1.2rem;
}

.popup-content p {
  color: #6B7280;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

/* OK Button */
.btn-ok {
  padding: 0.5rem 1.4rem;
  background-color: #4F46E5;
  color: white;
  border-radius: 8px;
  border: none;
  font-size: 0.85rem;
  cursor: pointer;
}

.btn-ok:hover {
  background-color: #4338CA;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .create-company-container {
    padding: 1.4rem;
  }

  .create-company-container h1 {
    font-size: 1.4rem;
  }
}/* ===== OVERLAY ===== */
.create-location-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 24, 39, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* ===== MODAL ===== */
.create-location-modal-content {
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid #E5E7EB;
  max-width: 560px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  animation: fadeSlide 0.25s ease-out;
}

/* Animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HEADER ===== */
.create-location-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
  border-bottom: 1px solid #E5E7EB;
}

.create-location-header h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #111827;
}

/* Close */
.close-btn {
  background: #F3F4F6;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  color: #374151;
  cursor: pointer;
  padding: 4px 10px;
  transition: 0.2s;
}

.close-btn:hover:not(:disabled) {
  background: #E5E7EB;
}

/* ===== FORM ===== */
.create-location-form {
  padding: 1.2rem;
}

/* Error */
.error-message {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
  padding: 0.7rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

/* ===== INPUTS ===== */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  margin-bottom: 0.3rem;
  display: block;
  font-weight: 500;
  color: #374151;
  font-size: 0.8rem;
}

.form-group input {
  width: 100%;
  padding: 0.55rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.85rem;
  transition: 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-group input:disabled {
  background-color: #F3F4F6;
}

/* Error Field */
.form-group input.input-error {
  border-color: #DC2626;
  background-color: #FEF2F2;
}

.field-error {
  color: #DC2626;
  font-size: 0.7rem;
  margin-top: 0.25rem;
}

/* ===== ROW ===== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

/* ===== ACTIONS ===== */
.form-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  padding-top: 1rem;
  border-top: 1px solid #E5E7EB;
  margin-top: 1rem;
}

/* Cancel */
.cancel-btn {
  padding: 0.5rem 1.2rem;
  background-color: #F3F4F6;
  color: #374151;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  font-size: 0.8rem;
}

/* Submit */
.submit-btn {
  padding: 0.5rem 1.2rem;
  background-color: #4F46E5;
  color: white;
  border-radius: 8px;
  border: none;
  font-size: 0.8rem;
}

.submit-btn:hover:not(:disabled) {
  background-color: #4338CA;
}

/* Disabled */
.cancel-btn:disabled,
.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===== SUCCESS MODAL ===== */
.success-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 24, 39, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.success-modal {
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid #E5E7EB;
  max-width: 380px;
  width: 90%;
  animation: fadeSlide 0.25s ease-out;
}

.success-modal-content {
  padding: 2rem 1.2rem;
  text-align: center;
}

/* Icon */
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #EEF2FF;
  color: #4F46E5;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  font-weight: bold;
}

/* Text */
.success-modal-content h2 {
  font-size: 1.2rem;
  color: #111827;
  margin-bottom: 0.5rem;
}

.success-modal-content p {
  font-size: 0.85rem;
  color: #6B7280;
  margin-bottom: 1rem;
}

/* Button */
.success-ok-btn {
  background: #4F46E5;
  color: white;
  padding: 0.5rem 1.4rem;
  border-radius: 8px;
  border: none;
  font-size: 0.85rem;
}

.success-ok-btn:hover {
  background: #4338CA;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .create-location-modal-content {
    width: 95%;
  }
}/* ===== PAGE ===== */
.company-locations-page {
  min-height: 100vh;
  background-color: #F9FAFB;
}

/* ===== CONTAINER ===== */
.locations-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* ===== HEADER ===== */
.locations-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.locations-header h1 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

/* ===== BUTTON ===== */
.btn-new-location {
  display: inline-block;
  margin: 0.8rem 0 1.5rem 0;
  padding: 0.55rem 1.2rem;
  background-color: #4F46E5;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: 0.2s;
}

.btn-new-location:hover {
  background-color: #4338CA;
}

/* ===== TABLE WRAPPER ===== */
.locations-list {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  padding: 1rem;
  overflow-x: auto;
}

/* ===== TABLE ===== */
table {
  width: 100%;
  border-collapse: collapse;
}

/* Header */
thead {
  background-color: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
}

thead th {
  text-align: left;
  padding: 0.9rem;
  font-weight: 600;
  color: #374151;
  font-size: 0.8rem;
}

/* Body */
td {
  padding: 0.9rem;
  border-bottom: 1px solid #F3F4F6;
  color: #4B5563;
  font-size: 0.85rem;
}

/* Row hover */
tbody tr {
  transition: background 0.2s ease;
}

tbody tr:hover {
  background-color: #F9FAFB;
}

/* ===== STATUS ===== */
.status {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.status.active {
  background: #ECFDF5;
  color: #059669;
}

.status.inactive {
  background: #FEF2F2;
  color: #DC2626;
}

/* ===== ACTION BUTTONS ===== */
.btn-action {
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  border: none;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
  margin-right: 0.3rem;
}

/* Primary */
.btn-action {
  background: #4F46E5;
  color: white;
}

.btn-action:hover {
  background: #4338CA;
}

/* Delete */
.btn-action.btn-delete {
  background: #DC2626;
}

.btn-action.btn-delete:hover {
  background: #B91C1C;
}

/* ===== STATES ===== */
.loading,
.error {
  padding: 0.8rem;
  margin: 1rem 0;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Loading */
.loading {
  background: #EFF6FF;
  color: #1D4ED8;
  border: 1px solid #BFDBFE;
}

/* Error */
.error {
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FECACA;
}

.status-change-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.status-change-modal-content {
  width: min(500px, 90%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  overflow: hidden;
}

.status-change-modal-content .modal-header,
.status-change-modal-content .modal-body,
.status-change-modal-content .modal-footer {
  padding: 1rem;
}

.status-change-modal-content .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E5E7EB;
}

.status-change-modal-content .modal-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.status-change-modal-content .modal-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
}

.status-change-modal-content .status-options {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.7rem;
}

.status-change-modal-content .status-btn {
  flex: 1;
  padding: 0.55rem 0;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.status-change-modal-content .status-btn.active {
  background: #4F46E5;
  color: #fff;
  border-color: #4F46E5;
}

.status-change-modal-content .btn-cancel {
  background: #F3F4F6;
  border: 1px solid #D1D5DB;
  color: #374151;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  cursor: pointer;
}/* ===== PAGE ===== */
.company-hr-page {
  min-height: 100vh;
  background-color: #F9FAFB;
}

/* ===== CONTAINER ===== */
.hr-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* ===== HEADER ===== */
.hr-container h1 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

/* ===== BUTTON ===== */
.btn-assign-hr {
  display: inline-block;
  margin: 0.8rem 0 1.5rem 0;
  padding: 0.55rem 1.2rem;
  background-color: #4F46E5;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: 0.2s;
}

.btn-assign-hr:hover {
  background-color: #4338CA;
}

/* ===== TABLE WRAPPER ===== */
.hr-list {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  padding: 1rem;
  overflow-x: auto;
}

/* ===== TABLE ===== */
table {
  width: 100%;
  border-collapse: collapse;
}

/* Header */
thead {
  background-color: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
}

thead th {
  text-align: left;
  padding: 0.9rem;
  font-weight: 600;
  color: #374151;
  font-size: 0.8rem;
}

/* Body */
td {
  padding: 0.9rem;
  border-bottom: 1px solid #F3F4F6;
  color: #4B5563;
  font-size: 0.85rem;
}

/* Row hover */
tbody tr {
  transition: background 0.2s ease;
}

tbody tr:hover {
  background-color: #F9FAFB;
}* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #007bff;
  --primary-hover: #0056b3;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --text-dark: #333;
  --text-light: #666;
  --border-color: #e0e0e0;
  --white: #fff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f5f5f5;
  color: #333;
}

html, body, #root {
  height: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}