﻿/* Light Theme colors */
/* Dark Theme colors */
.base-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 {
  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;
}
