/* body {
  font-family: Arial, sans-serif;
  background: #f2f4f7;
  text-align: center;
}

.box {
  background: white;
  padding: 20px;
  width: 320px;
  margin: 30px auto;
  border-radius: 10px;
}

input, select, button {
  padding: 10px;
  margin: 5px;
  width: 90%;
}

.job {
  border: 1px solid #ccc;
  margin: 10px;
  padding: 10px;
  background: white;
  border-radius: 6px;
}

.status {
  font-weight: bold;
} */


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

/* ---------- GLOBAL ---------- */
body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: #f3f6fb;
  color: #2c3e50;
  min-height: 100vh;
}

/* ---------- HEADINGS ---------- */
h1, h2, h3 {
  margin: 20px 0;
  font-weight: 600;
}

/* ---------- MAIN CARD / BOX ---------- */
.box {
  background: #ffffff;
  padding: 30px;
  width: 360px;
  margin: 50px auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ---------- INPUTS & BUTTONS ---------- */
input, select {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 6px;
  border: 1px solid #dcdfe6;
  font-size: 14px;
}

input:focus, select:focus {
  border-color: #2563eb;
  outline: none;
}

button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  background: #2563eb;
  color: white;
  transition: all 0.3s ease;
}

button:hover {
  background: #1e40af;
}

/* ---------- DASHBOARD ---------- */
#content {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

/* ---------- JOB CARD ---------- */
.job {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin: 15px 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.job p {
  margin: 6px 0;
}

/* ---------- STATUS BADGES ---------- */
.status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}

.status.applied {
  background: #e0f2fe;
  color: #0369a1;
}

.status.interview {
  background: #fef3c7;
  color: #92400e;
}

.status.hired {
  background: #dcfce7;
  color: #166534;
}

.status.rejected {
  background: #fee2e2;
  color: #991b1b;
}

/* ---------- BUTTON GROUPS ---------- */
.job button {
  width: auto;
  padding: 8px 14px;
  margin-right: 6px;
  font-size: 13px;
}

.job button:nth-child(1) {
  background: #f59e0b;
}

.job button:nth-child(1):hover {
  background: #d97706;
}

.job button:nth-child(2) {
  background: #16a34a;
}

.job button:nth-child(2):hover {
  background: #15803d;
}

.job button:nth-child(3) {
  background: #dc2626;
}

.job button:nth-child(3):hover {
  background: #b91c1c;
}

/* ---------- ANALYTICS ---------- */
.analytics {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 20px 0;
}

.analytics div {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .box {
    width: 90%;
  }

  #content {
    padding: 10px;
  }

  .analytics {
    flex-direction: column;
  }
}

