body {
  font-family: Arial, sans-serif;
  margin: 30px;
  background-color: #f4f6f9;
}

h1 {
  margin-bottom: 20px;
}

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



.tabs {
  margin-bottom: 15px;
}

.tabBtn {
  padding: 8px 16px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  border-radius: 5px;
  margin-right: 5px;
  transition: 0.2s ease;
}

.tabBtn:hover {
  background-color: #e7f1ff;
}



.job-card {
  border: 1px solid #ddd;
  padding: 15px;
  margin: 10px 0;
  border-radius: 8px;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.delete-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}



.badge {
  display: inline-block;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.badge-default {
  background: #e0f2ff;
  color: #007bff;
}

.badge-interview {
  background: #d4edda;
  color: #28a745;
}

.badge-rejected {
  background: #f8d7da;
  color: #dc3545;
}



.actions {
  margin-top: 10px;
}

.btn-interview,
.btn-rejected {
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: white;
  transition: 0.2s ease;
}

.btn-interview {
  background: #28a745;
  margin-right: 5px;
}

.btn-rejected {
  background: #dc3545;
}

.btn-interview:hover {
  background: #218838;
}

.btn-rejected:hover {
  background: #c82333;
}



#emptyState {
  text-align: center;
  padding: 40px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  margin-top: 15px;
}

.empty-icon {
  font-size: 40px;
  margin-bottom: 10px;
}



@media (max-width: 600px) {
  body {
    margin: 15px;
  }

  .job-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .tabs {
    display: flex;
    flex-wrap: wrap;
  }

  .tabBtn {
    margin-bottom: 5px;
  }
}