.topbar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left h1 {
  font-size: 22px;
}

.topbar-right {
  display: flex;
  gap: 18px;
  align-items: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  border: 1px solid #eee;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.stat-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.stat-card h3 {
  font-size: 30px;
  color: #1a73e8;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 20px;
}

.dashboard-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #eee;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.section-header h3 {
  font-size: 20px;
}

.text-link {
  color: #1a73e8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

.page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px;
}

.page-header {
  margin-bottom: 24px;
}

.page-header h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.page-header p {
  color: #666;
}

.filter-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.filter-bar input {
  flex: 1;
  min-width: 260px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
}

.filter-bar input:focus {
  outline: none;
  border-color: #1a73e8;
}

/* LOGIN PAGE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f4f7fb;
  color: #222;
}

.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-card {
  background: #fff;
  width: 100%;
  max-width: 400px;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.auth-card h1 {
  font-size: 28px;
  margin-bottom: 8px;
  text-align: center;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: bold;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.form-group input:focus {
  outline: none;
  border-color: #1a73e8;
}

.btn-primary {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #1a73e8;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

.btn-primary:hover {
  background: #155ec4;
}

.message {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
  color: red;
}

.switch-link {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}

.switch-link a {
  color: #1a73e8;
  text-decoration: none;
}

.switch-link a:hover {
  text-decoration: underline;
}
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
}

.form-group select:focus {
  outline: none;
  border-color: #1a73e8;
}
.topbar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left h1 {
  font-size: 22px;
}

.topbar-right {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
  color: #1a73e8;
}

.page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px;
}

.page-header {
  margin-bottom: 24px;
}

.page-header h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.page-header p {
  color: #666;
}

.filter-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.filter-bar input {
  flex: 1;
  min-width: 260px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
}

.filter-bar input:focus {
  outline: none;
  border-color: #1a73e8;
}

.btn-secondary {
  margin-top: 10px;
  padding: 12px 18px;
  border: 1px solid #1a73e8;
  background: #fff;
  color: #1a73e8;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.btn-secondary:hover {
  background: #eef5ff;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.job-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
}

.job-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.job-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.job-description {
  font-size: 14px;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.5;
}

.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.skill-tag {
  background: #eef5ff;
  color: #1a73e8;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.job-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.job-details-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
}

.job-details-card h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.job-details-section {
  margin-top: 24px;
}

.job-details-section h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.job-details-section p,
.job-details-section li {
  color: #333;
  line-height: 1.6;
  font-size: 15px;
}

.job-details-section ul {
  padding-left: 18px;
}

.info-row {
  margin-bottom: 8px;
  color: #555;
}

.empty-state {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  color: #666;
  border: 1px solid #eee;
}

@media (max-width: 768px) {
  .topbar {
    padding: 16px 20px;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .topbar-right {
    flex-wrap: wrap;
  }

  .job-details-card {
    padding: 20px;
  }
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  border: 1px solid #eee;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.stat-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.stat-card h3 {
  font-size: 30px;
  color: #1a73e8;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 20px;
}

.dashboard-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #eee;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.section-header h3 {
  font-size: 20px;
}

.text-link {
  color: #1a73e8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

.profile-list {
  display: grid;
  gap: 12px;
}

.profile-item {
  padding: 12px 14px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fafafa;
}

.profile-item span {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 4px;
}

.profile-item strong {
  font-size: 15px;
  color: #222;
}

.application-list {
  display: grid;
  gap: 14px;
}

.application-item {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
  background: #fafafa;
}

.application-item h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.application-item p {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

.status-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 8px;
}

.status-applied {
  background: #eef5ff;
  color: #1a73e8;
}

.status-review,
.status-under-review {
  background: #fff7e6;
  color: #b26a00;
}

.status-shortlisted {
  background: #ecfdf3;
  color: #15803d;
}

.status-interview {
  background: #f3e8ff;
  color: #7e22ce;
}

.status-rejected {
  background: #fee2e2;
  color: #b91c1c;
}

.status-offer {
  background: #dcfce7;
  color: #166534;
}

.quick-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}
.list-stack {
  display: grid;
  gap: 14px;
}

.list-item {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
  background: #fafafa;
}

.list-item h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.list-item p {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

.action-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn-link {
  display: inline-block;
  text-decoration: none;
  color: #1a73e8;
  font-size: 14px;
  font-weight: 600;
}

.btn-link:hover {
  text-decoration: underline;
}

.small-muted {
  font-size: 13px;
  color: #777;
}

.status-closed {
  background: #f3f4f6;
  color: #374151;
}

.status-open {
  background: #ecfdf3;
  color: #15803d;
}
.page-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-inline {
  width: auto;
  display: inline-block;
  text-decoration: none;
}

.text-no-underline {
  text-decoration: none;
}

.form-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #eee;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  resize: vertical;
  background: #fff;
}

.form-group textarea:focus {
  outline: none;
  border-color: #1a73e8;
}

.job-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.danger-link {
  color: #b91c1c;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
}

.danger-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.application-grid {
  display: grid;
  gap: 16px;
}

.application-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.select-inline {
  min-width: 180px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
}

.select-inline:focus {
  outline: none;
  border-color: #1a73e8;
}

.score-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef5ff;
  color: #1a73e8;
  font-size: 12px;
  font-weight: 700;
  margin-top: 8px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.detail-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 18px;
  background: #fafafa;
}

.detail-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}
.job-summary-box {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 18px;
}

.file-input {
  padding: 10px 0;
}

.timeline-list {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.timeline-item {
  border-left: 4px solid #1a73e8;
  padding: 10px 14px;
  background: #fafafa;
  border-radius: 0 10px 10px 0;
}

.timeline-item h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 14px;
  color: #555;
  margin-bottom: 4px;
}

.info-box {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
  margin-top: 16px;
}