body {
  font-family: Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  background: #f3f6fb;
  
background-image: url('images/bg.jpg.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: #fff;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.6); /* Dark effect */

  z-index: -1;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
}

h1 {
  margin: 0;
  font-size: 28px;
}

.card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  padding: 24px;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

label {
  display: block;
  margin: 16px 0 8px;
  font-weight: 600;
}

input,
select,{
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: none;

  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;

  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

button.secondary {
  background: #6b7280;
}

button.status-btn {
  width: auto;
  margin-right: 8px;
  margin-bottom: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

thead {
  background: #e2e8f0;
}

th,
td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #d1d5db;
}

tr:hover {
  background: #f8fafc;
}

.status-pill {
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-block;
  font-size: 13px;
  color: #1f2937;
}

.status-New { background: #e25050; }
.status-Interview { background: #fde68a; }
.status-Hired { background: #86efac; }
.status-Rejected { background: #fecaca; }

.top-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.top-row input {
  flex: 1;
}

@media (max-width: 720px) {
  .top-row {
    flex-direction: column;
  }
}

.delete-btn {
  margin-left: auto;  
  margin-right: 30px;
  width: 26px;
  height: 26px;
  padding: 0;
  font-size: 14px;
  border-radius: 50%;
}

.delete-btn:hover {
background: #cc001f;
}

.delete-btn:active {
  transform: scale(0.95);
}