* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f0f4f8;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}

h1 {
  color: #2e86ab;
  margin-bottom: 20px;
}

h2 {
  color: #1a1a2e;
  margin-bottom: 16px;
}

.card {
  background: white;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

button {
  background-color: #2e86ab;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  margin-right: 8px;
}

button:hover {
  background-color: #1a6a8a;
}

button.danger {
  background-color: #e74c3c;
}

button.danger:hover {
  background-color: #c0392b;
}

.stats {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.stat-card {
  background: white;
  border-radius: 8px;
  padding: 16px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.stat-card h3 {
  font-size: 32px;
  color: #2e86ab;
}

.stat-card p {
  color: #888;
  font-size: 13px;
  margin-top: 4px;
}

.job-card {
  background: white;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-info h3 {
  color: #1a1a2e;
  margin-bottom: 4px;
}

.job-info p {
  color: #888;
  font-size: 13px;
}

.status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.status.applied {
  background: #d5f5e3;
  color: #27ae60;
}
.status.interview {
  background: #d6eaf8;
  color: #2980b9;
}
.status.offer {
  background: #fef9e7;
  color: #f39c12;
}
.status.rejected {
  background: #fadbd8;
  color: #e74c3c;
}

.error {
  color: #e74c3c;
  margin-top: 8px;
  font-size: 14px;
}
.success {
  color: #27ae60;
  margin-top: 8px;
  font-size: 14px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

select {
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
}
