body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: #f9fafb;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background: #0d9488;
  color: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 600;
}
header a:hover { text-decoration: underline; }

.steps-indicator {
  display: flex;
  justify-content: space-around;
  margin: 20px auto;
  max-width: 600px;
  font-weight: 600;
  color: #999;
}
.steps-indicator span.active { color: #0d9488; }

.step {
  display: none;
  max-width: 600px;
  margin: 20px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.step.active { display: block; }

label { display:block; margin-top:10px; font-weight:600; }
input, select, textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  font-family: inherit;
}

.buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

button {
  background: #0d9488;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
}
button:hover { background: #0f766e; }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
  margin: 10px 0;
}
.skills-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}
.skills-grid input[type="checkbox"] {
  transform: scale(1.2);
}

.salary-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}
.salary-row select {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px;
}
#addSalary {
  background: #e2e8f0;
  border: none;
  color: #0d9488;
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
}
#addSalary:hover { background: #cbd5e1; }

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #666;
}
select, input[type="file"] {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px;
}
textarea {
  min-height: 80px;
}
.dashboard {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.summary-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.summary-cards .card {
  background: #f8fafc;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}
.summary-cards .card h3 { margin-bottom: 5px; color: #0d9488; }

.placements table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.placements th, .placements td {
  border-bottom: 1px solid #e2e8f0;
  padding: 10px;
  text-align: left;
}
.placements th { background: #f1f5f9; color: #0d9488; }

.interviews .card {
  background: #f9fafb;
  padding: 15px;
  border-radius: 8px;
  margin: 10px 0;
  border: 1px solid #e2e8f0;
}
