.ir-wrapper {
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.ir-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

/* SIDEBAR */
.ir-sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ir-link {
  background: #0B57D0;
  color: #fff;
  text-decoration: none;
  padding: 14px 18px;
  font-size: 15px;
}

.ir-link.active,
.ir-link:hover {
  background: #0b4095;
}

/* CONTENT */
.ir-title {
  font-size: 28px;
  margin-bottom: 25px;
}

/* ACCORDION */
.accordion {
  border: 1px solid #ddd;
  margin-bottom: 20px;
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: #f5f5f5;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.accordion-header.active {
  background: #3f4652;
  color: #fff;
}

/*.accordion-body {*/
/*  display: none;*/
/*  padding: 20px;*/
/*}*/

/*.accordion-body.show {*/
/*  display: block;*/
/*}*/

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  opacity: 0;
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease,
    padding 0.35s ease;
}

.accordion-body.show {
  max-height: 1000px; /* enough for content */
  padding: 20px;
  opacity: 1;
}

/* DOCUMENT LIST */
.doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.doc-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.doc-list li a {
  color: #ff0000;
  text-decoration: none;
  margin-left: 6px;
}

.doc-list li a:hover {
  text-decoration: underline;
}

.committee-section {
  font-size: 15px;
  color: #333;
}

.committee-intro {
  margin-bottom: 20px;
  font-weight: 500;
}

.committee-title {
  margin: 30px 0 15px;
  font-size: 16px;
  font-weight: 600;
}

/* TABLE */
.table-wrap {
  overflow-x: auto;
}

.committee-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.committee-table th,
.committee-table td {
  border: 1px solid #ddd;
  padding: 10px 12px;
  text-align: left;
}

.committee-table th {
    background: #fff;
    font-weight: 600;
    color: #000;
}

.committee-table td {
  color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
  .committee-table {
    min-width: 100%;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .ir-container {
    grid-template-columns: 1fr;
  }
}

.ir-tabs-section {
  font-family: Arial, sans-serif;
}

/* TABS CONTAINER */
.ir-tabs {
  background: #f1f1f1;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* TAB BUTTON */
.ir-tab {
  background: transparent;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  color: #555;
}

.ir-tab.active {
  background: #e0e0e0;
  font-weight: 600;
}

/* CONTENT */
.ir-tab-content {
  display: none;
  padding: 25px 5px;
  font-size: 15px;
}

.ir-tab-content.active {
  display: block;
}

.ir-tab-content .highlight {
  color: #ff0000;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
  .ir-tabs {
    gap: 6px;
  }

  .ir-tab {
    font-size: 13px;
    padding: 8px 12px;
  }
  
  aside.ir-sidebar.pt-5 {
    padding: 0 !important;
}
}
