.container {

}

.header {

}

.headerContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

.logoSection {
  display: flex;
  align-items: center;
  gap: 16px;
}

.backButton {
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #ffc107;
  letter-spacing: 1px;
}

.menuContainer {

  padding-bottom: 20px;
  padding:2px;
}

.accordionItem {
  margin-bottom: 2px;
}

.menuItemButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  background-color: #2c4f58;
  text-align: center;

  /* Dark background default */
  border: none;
  border-bottom: 1px solid #454d55;
  color: white;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.menuItemButtonText {
  text-align: center;
}
.menuItemButton:hover {
  background-color: #2c4f58;
}

/* Active state - Teal/Blue color as requested */
.menuItemButton.active {
  background-color: #2c4f58;
  /* Bootstrap Info/Teal color */
  color: white;
  border-bottom: none;
}

.chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  filter: invert(1);
}

.chevronRotated {
  transform: rotate(180deg);
}

.contentArea {
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  /* Dark background for content */
  padding: 6px 10px;
  color: #e0e0e0;
  border-bottom: 1px solid #dee2e6;
}

/* Ensure parsed HTML tables look good */
.contentArea table {
  width: 100%;
  margin-bottom: 0;
  color: #e0e0e0 !important;
}

.contentArea td {
  padding: 12px;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.contentArea tr:first-child td {
  border-top: none;
}

.contentArea .text-danger {
  color: #ff4d4d !important;
  font-weight: 600;
}