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

body {
  background: #f5f7fa;
  padding: 40px 20px;
  color: #1f2937;
}

.wrapper {
  max-width: 1100px;
  margin: auto;
}

h1 {
  margin-bottom: 30px;
}

/* Dashboard */
.stats-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.info-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
}

.info-card h3 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #6b7280;
}

.info-card p {
  font-size: 28px;
  font-weight: bold;
}

.count-total { color: #2563eb; }
.count-interview { color: #16a34a; }
.count-rejected { color: #dc2626; }

/* Section header */
.header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.filter-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-tab {
  padding: 6px 14px;
  border-radius: 6px;
  background: #e5e7eb;
  cursor: pointer;
  font-size: 14px;
}

.filter-tab.active {
  background: #2563eb;
  color: white;
}

/* Job cards */
.jobs-list {
  display: grid;
  gap: 20px;
}

.job-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  transition: 0.2s;
}

.job-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.job-card h3 {
  margin-bottom: 5px;
}

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

.status {
  display: inline-block;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.status.all { background: #e5e7eb; }
.status.interview { background: #dcfce7; color: #166534; }
.status.rejected { background: #fee2e2; color: #991b1b; }

.buttons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

button {
  padding: 6px 10px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 13px;
}

.btn-interview {
  background: #16a34a;
  color: white;
}

.btn-rejected {
  background: #dc2626;
  color: white;
}

 .btn-delete {
  border-radius: 80px;
  position: absolute;
  top: 32px;
  right: 32px;
} 

.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 10px;
}

.empty-state img {
  width: 80px;
  margin-bottom: 15px;
}

@media (max-width: 600px) {
  body { padding: 20px; }
}