
/* Table styling */
table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    word-wrap: break-word;
    white-space: normal;
}
.table-banner {
  display: flex;
  align-items: center;      /* centers emoji relative to text block */
  background-color: #dde6fe;
  padding: 4px 8px;
  border-bottom: 1px solid #e0e0e0;
  font-family: Lato; 
  color: #474646;
  font-weight: bold;
  gap: 8px;                 /* space between emoji and text */
  font-size: 0.9em;
  line-height: 1.1;
  border-radius: 6px; /* round edges */
  width: 100%;
}
.static-table-banner {
  display: flex;
  align-items: center;
  background-color: #d9dce2;
  padding: 4px 8px;
  border-bottom: 1px solid #e0e0e0;
  font-family: Lato; 
  color: #474646;
  font-weight: bold;
  gap: 8px;  
  font-size: 0.9em;
  line-height: 1.1;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 10px; /* Only difference is that it has space below section */
}
.table-banner .emoji {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;   /* increase this for larger icon */
  color: #199bd6;
}
.static-table-banner .emoji {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;   /* increase this for larger icon */
  color: #4d5052;
}
.table-banner .text {
  flex: 1;                  /* text takes remaining space */
}
.table-collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #d0dff02c;
  border-top: none;
  padding: 0 0;
  border-radius: 0 0 5px 5px;
  margin-bottom: 10px; /* Adds spacing below the section */
  width: 100%;
  display: block;
  overflow-x: auto; 
}
.table-collapsible-content table {
  background-color: #ffffff;
}

.table-collapsible-content b {
  color: #6300d3;
}
.table-collapsible-content.open {
  max-height: none;
}
.table-collapsible-content p {
  display: inline-block !important;
  padding: 5px 10px !important;
  font-size: 0.9em !important;
  line-height: 1.3 !important;
  margin-top: 0.5em !important;
  margin-bottom: 0 !important;
}
.table-collapsible-content ul {
  margin-top: 1rem;
  padding-left: 0.4rem;
  line-height: 1;
  font-size: 0.9em !important;
}
.table-collapsible-content li {
  margin-bottom: 0.4rem;
  line-height: 1;
  font-size: 1em !important;
}
.table-collapsible-content ul ul {
  margin-top: 0.1rem;
  line-height: 1;
  font-size: 1em !important;
}
.table-collapsible-content ul ul li {
  margin-bottom: 0.1rem;
  line-height: 1;
  font-size: 1em !important;
}
.table-collapsible-content li b {
  color: #6300d3;
  line-height: 1;
  font-size: 1em !important;
}

/* Table with no vertical lines */
.table-no-vertical-lines {
  border-collapse: collapse;
  width: 100%;
}
.table-no-vertical-lines th,
.table-no-vertical-lines td {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: none !important;
  border-right: none !important;
  padding: 8px;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.6) !important; 

}
.table-no-vertical-lines th {
  background-color: rgba(255, 255, 255, 0.6) !important;
}
.table-no-vertical-lines b {
  color: #6300d3;
}

/* Compact Table Style */
.compact-table {
  font-size: 0.8em;
  line-height: 1.2;
  width: 100%;
  border-collapse: collapse;
}
.compact-table th,
.compact-table td {
  vertical-align: top;
  text-align: left;
  padding: 0.3em 0.6em;
  border: 1px solid #ddd;
}
.compact-table th {
  background-color: #e3f2fd;
  width: 20%;
}
.compact-table td {
  background-color: #f9f9f9;
}


/* Compact table with no vertical lines */
.compact-table-no-vertical-lines {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.9em;
  line-height: 1.2;
}
.compact-table-no-vertical-lines th,
.compact-table-no-vertical-lines td {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: none !important;
  border-right: none !important;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.6) !important; 
  vertical-align: top;
  padding: 0.1em 0.1em;
  padding-left: 1px;
  padding-right: 1px;
  line-height: 1.1; 
}
.compact-table-no-vertical-lines ul {
  margin-top: 1rem;
  line-height: 1;
  font-size: 1em !important;
}
.compact-table-no-vertical-lines li {
  margin-bottom: 0.4rem;
  line-height: 1;
  font-size: 1em !important;
}