/* PPID AGENDA PAGE SPECIFIC STYLES */
.ppid-page-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 120px 20px 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.ppid-page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/background-pattern.png') repeat;
  opacity: 0.05;
}

.ppid-page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ppid-page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

.ppid-page-content {
  padding: 60px 0;
  background-color: #f5f8fb;
  min-height: 60vh;
}

.breadcrumb {
  margin-bottom: 30px;
  font-size: 14px;
  color: var(--text-color);
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--secondary-color);
  font-weight: bold;
}

.content-card {
  background-color: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-card h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.content-card > p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #666;
}

.agenda-table-container {
  overflow-x: auto;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.agenda-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.agenda-table th {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 12px;
  text-align: left;
  font-weight: 600;
  border: 1px solid #0a3259;
  position: sticky;
  top: 0;
}

.agenda-table td {
  padding: 12px;
  border: 1px solid #e0e0e0;
  color: #333;
  font-size: 14px;
}

.agenda-table tr:nth-child(even) {
  background-color: #f8fafc;
}

.agenda-table tr:hover {
  background-color: #e8f3ff;
}

.agenda-table td:nth-child(3) {
  font-weight: 600;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .agenda-table {
    min-width: 700px;
  }
  
  .agenda-table th,
  .agenda-table td {
    padding: 10px 8px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .ppid-page-hero {
    padding: 100px 20px 60px;
  }
  
  .ppid-page-hero h1 {
    font-size: 2rem;
  }
  
  .ppid-page-hero p {
    font-size: 1rem;
  }
  
  .content-card {
    padding: 30px 20px;
  }
  
  .content-card h2 {
    font-size: 24px;
  }
  
  .agenda-table-container {
    margin: 0 -20px;
    width: calc(100% + 40px);
    border-radius: 0;
  }
}

@media (max-width: 576px) {
  .ppid-page-hero h1 {
    font-size: 1.8rem;
  }
  
  .content-card {
    padding: 25px 15px;
    border-radius: 12px;
  }
  
  .content-card h2 {
    font-size: 22px;
  }
  
  .agenda-table-container {
    margin: 0 -15px;
    width: calc(100% + 30px);
  }
  
  .agenda-table th,
  .agenda-table td {
    padding: 8px 6px;
    font-size: 12px;
  }
}