﻿/* Light Theme colors */
/* Dark Theme colors */
/* Light Theme colors */
/* Dark Theme colors */
.base-card, .parent-card {
  padding: 3rem;
  height: fit-content;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  margin: 3rem 0;
}

.tabel-container {
  width: 100%;
}
.tabel-container table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.tabel-container table th {
  background-color: #E2E7E3;
}
.tabel-container table td {
  background-color: white;
}
.tabel-container table td, .tabel-container table th {
  border: 1px solid #0B4650;
  text-align: left;
  vertical-align: top;
  padding: 1rem;
}
.tabel-container table tr:first-child th {
  border-top: none;
}
.tabel-container table tr:first-child th:first-child {
  border-top-left-radius: 8px;
  border-left: none;
}
.tabel-container table tr:first-child th:last-child {
  border-top-right-radius: 8px;
  border-right: none;
}
.tabel-container table tr:last-child td {
  border-bottom: none;
}
.tabel-container table tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
  border-left: none;
}
.tabel-container table tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
  border-right: none;
}
.tabel-container table tr td:first-child {
  border-left: none;
}
.tabel-container table tr td:last-child {
  border-right: none;
}

.ranking-svg-container {
  display: flex;
}
.ranking-svg-container img {
  display: block;
  margin: auto;
  width: 6rem;
}

[data-theme=dark] .base-card, [data-theme=dark] .parent-card {
  background-color: #464242;
}
[data-theme=dark] .tabel-container {
  width: 100%;
}
[data-theme=dark] .tabel-container table th {
  background-color: #0B4650;
}
[data-theme=dark] .tabel-container table td {
  background-color: #464242;
}
[data-theme=dark] .tabel-container table td, [data-theme=dark] .tabel-container table th {
  border: 1px solid #F5F5F5;
}

.parent-card {
  padding: 3rem 3rem 1rem 3rem;
  color: #0B4650;
}
.parent-card h1, .parent-card h2, .parent-card h3, .parent-card h4, .parent-card h5, .parent-card h6, .parent-card p {
  margin: 0;
}
.parent-card .accordion-button {
  border-bottom: none;
  padding: 0;
  color: #0B4650;
  transition: none;
}
.parent-card .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  color: #0B4650;
}
.parent-card .accordion-button:focus {
  box-shadow: none;
}
.parent-card .accordion-button:after {
  content: none;
}
.parent-card .accordion {
  margin-bottom: 2rem;
}
.parent-card .accordion-body {
  padding: 2rem 0 0 2rem;
  border-top: none;
  border-left: none;
}
.parent-card .accordion-collapse.show,
.parent-card .accordion-collapse.collapsing {
  border-bottom: 1px solid #0B4650;
  border-left: 1px solid #0B4650;
  border-bottom-left-radius: 8px;
}

.download-item {
  padding: 3rem;
  height: fit-content;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  margin: 0 2rem 2rem 0;
}

[data-theme=dark] .parent-card {
  color: #F5F5F5;
}
[data-theme=dark] .parent-card .accordion-button {
  background-color: #464242;
  color: #F5F5F5;
}
[data-theme=dark] .parent-card .accordion-button:not(.collapsed) {
  color: #F5F5F5;
}
[data-theme=dark] .parent-card .accordion-collapse.show, [data-theme=dark] .parent-card .accordion-collapse.collapsing {
  border-bottom: 1px solid #F5F5F5;
  border-left: 1px solid #F5F5F5;
}
[data-theme=dark] .download-item {
  background-color: #464242;
}
