.id-hero {
  background-color: var(--primary);
  background-image: url('../assets/SASI1.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 4rem 1.5rem;
}

.id-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.id-hero-content {
  position: relative;
  z-index: 1;
}

.id-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.8rem 0;
  letter-spacing: 1px;
}

.id-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 400;
}

.id-breadcrumb a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.2s ease;
}

.id-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.id-breadcrumb .divider {
  opacity: 0.6;
}

.id-breadcrumb .active {
  opacity: 1;
  font-weight: 500;
}

.id-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.id-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2rem;
}

.id-table-wrap {
  overflow-x: auto;
}

.id-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
}

.id-table th {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}

.id-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #ddd;
  font-size: 1rem;
  color: #333;
  vertical-align: middle;
}

.id-table tbody tr:last-child td {
  border-bottom: none;
}

.id-table td:first-child {
  font-weight: 600;
}

.id-table .date-open {
  font-weight: 600;
  color: var(--text);
}

.id-table .date-closed {
  text-decoration: line-through;
  color: #999;
}

.id-table .status-closed {
  color: var(--secondary);
  font-weight: 700;
  margin-left: 0.5rem;
}

.id-table .status-open {
  color: #2e7d32;
  font-weight: 700;
  margin-left: 0.5rem;
}

@media (max-width: 768px) {
  .id-hero h1 {
    font-size: 2rem;
  }
  .id-container {
    padding: 3rem 1rem 5rem;
  }
  .id-table th,
  .id-table td {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
}
