body {
  background-color: var(--bs-body-bg);
  margin: 0;
  padding: 0;
}
.header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 16px 16px 16px;
}
.header-section .title {
  font-family: "Public Sans", sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #4a5568;
}
.header-section .button-score-card a {
  display: inline-block;
  padding: 12px 32px;
  background-color: #ff5c54;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Public Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.header-section .button-score-card a:hover {
  cursor: pointer;
  background-color: #2d3748;
}
@media (max-width: 1200px) {
  .header-section {
    padding: 12px;
  }
  .header-section .title {
    font-size: 22px;
  }
  .header-section .button-score-card a {
    padding: 8px 16px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .header-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-section .title {
    font-size: 20px;
  }
  .header-section .button-score-card a {
    padding: 6px 12px;
    font-size: 12px;
    margin-top: 8px;
  }
}
@media (max-width: 480px) {
  .header-section .title {
    font-size: 18px;
  }
  .header-section .button-score-card a {
    padding: 4px 8px;
    font-size: 11px;
  }
}
.back-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #151516;
  /* Warna teks tautan */
  font-size: 16px;
  /* Ukuran font */
  /* padding: 0.5rem 0.5rem; */
  margin-bottom: 1rem;
  border: 2px solid transparent;
  /* Border default */
  transition: all 0.3s ease;
  /* Transisi untuk hover efek */
}
.back-link:hover {
  color: #4a4a4c;
  /* Warna teks saat hover */
  /* border-color: #0056b3; */
}
.back-icon {
  margin-right: 0.5rem;
  /* Jarak antara ikon dan teks */
  width: 16px;
  /* Lebar ikon */
  height: 16px;
  /* Tinggi ikon */
  fill: currentColor;
  /* Warna ikon mengikuti warna teks */
}
.toolbar-dashboard {
  display: flex;
  padding: 32px 32px 0px 32px;
  flex-direction: row;
  gap: 1rem;
}
.score-wrapper {
  background-color: white;
  border-radius: 12px;
  box-shadow: -1px 1px 14px 2px rgba(235, 225, 225, 0.75);
  -webkit-box-shadow: -1px 1px 14px 2px rgba(235, 225, 225, 0.75);
  -moz-box-shadow: -1px 1px 14px 2px rgba(235, 225, 225, 0.75);
}
@media (max-width: 767px) {
  .score-wrapper {
    padding: 32px 12px;
  }
  .score-wrapper .toolbar-dashboard {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .score-wrapper .toolbar-dashboard {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .score-wrapper {
    padding: 32px;
  }
}
.select-dropdown {
  position: relative;
  font-family: "Public Sans", sans-serif;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(128, 128, 128, 0.2);
}
.select-dropdown .label-form {
  position: absolute;
  font-family: "Public Sans", sans-serif;
  top: -8px;
  left: 10px;
  font-size: 14px;
  color: #888;
  background-color: white;
  padding: 0 4px;
}
.select-dropdown select {
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 200;
  width: 100%;
  color: #111010;
  padding: 8px 24px 8px 10px;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select-dropdown select:active, .select-dropdown select:focus {
  outline: none;
  box-shadow: none;
}
.select-dropdown:after {
  content: " ";
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: 18px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #aaa;
}
.score-select {
  width: 100%;
}
.select-row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 1rem;
}
.search-form {
  height: 54px;
  display: flex;
  padding: 0px 12px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 8px;
  position: relative;
  border: 1px solid rgba(128, 128, 128, 0.2);
}
.search-form .search-input {
  width: 80%;
  height: 54px;
  display: flex;
  align-items: center;
  padding: 0 0px 0 14px;
  position: relative;
}
.search-form .search-input .label-form {
  position: absolute;
  font-family: "Public Sans", sans-serif;
  top: -8px;
  left: 0px;
  font-size: 14px;
  color: #888;
  background-color: white;
  padding: 0 4px;
}
.search-form .search-input .icon-container {
  display: flex;
  align-items: center;
  padding-right: 12px;
}
.search-form .search-input .icon-container .search-icon {
  font-size: 20px;
  color: #aaa;
}
.search-form .search-input .search-text {
  flex-grow: 1;
  width: 100%;
  flex-shrink: 0;
  font-family: "Public Sans", sans-serif;
  font-size: 14px;
  color: #111;
  border: none;
  outline: none;
  padding: 8px 0;
}
.search-form .search-input .search-text::placeholder {
  color: #aaa;
  font-weight: normal;
}
.search-form .search-input .placeholder {
  width: auto;
}
.select-sortby {
  position: relative;
  display: flex;
  align-items: center;
  width: 40%;
}
.select-sortby .label-form {
  width: 40%;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #888;
  margin-right: 8px;
}
.select-sortby select {
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 200;
  width: 60%;
  color: #111010;
  padding: 8px 10px;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select-sortby select:active, .select-sortby select:focus {
  outline: none;
  box-shadow: none;
}
.select-sortby:after {
  content: " ";
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -2px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #aaa;
}
@media (max-width: 768px) {
  .select-sortby {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .select-sortby .label-form {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4px;
  }
  .select-sortby select {
    width: 100%;
  }
}
.link-row {
  cursor: pointer;
}
.link-row .td-date {
  width: 100px;
}
.link-row:hover {
  background-color: #f4f6f8;
  transition: all;
}
.loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.loading-overlay .spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #ff5c54;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.table-container {
  overflow-x: auto;
  /* Mengaktifkan scrolling horizontal */
}
.custom-table-score {
  width: 100%;
  padding: 10px;
  border-collapse: collapse;
  font-family: "Public Sans", sans-serif;
}
.custom-table-score th, .custom-table-score td {
  padding: 10px;
  /* border-bottom: 1px solid #e5e7eb; */
  text-align: left;
  color: #35383b;
  padding-top: 24px;
  padding-bottom: 24px;
}
.custom-table-score th {
  color: #637381;
  background-color: #f4f6f8;
  font-weight: 600;
}
.custom-table-score tbody tr td {
  color: #383a3d;
  padding-top: 30px;
  padding-bottom: 30px;
}
.custom-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Public Sans", sans-serif;
}
.custom-table th, .custom-table td {
  padding: 10px;
  /* border-bottom: 1px solid #e5e7eb; */
  text-align: left;
  color: #35383b;
  padding-top: 24px;
  padding-bottom: 24px;
}
.custom-table th {
  color: #637381;
  background-color: #f4f6f8;
  font-weight: 600;
}
.custom-table tbody tr td {
  color: #383a3d;
  padding-top: 30px;
  padding-bottom: 30px;
}
.pagination-container {
  width: 100%;
  height: 54px;
  padding: 0px 8px 10px 16px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  /* General styling for the select element */
  /* Styling for the select wrapper */
}
.pagination-container .rows-per-page {
  flex-grow: 1;
  text-align: right;
  color: #4a5568;
  font-size: 14px;
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
  line-height: 1.375;
}
.pagination-container .per_page {
  appearance: none;
  background-color: transparent;
  padding: 8px 12px;
  font-size: 14px;
  color: #333;
  border: none;
  outline: none;
  cursor: pointer;
}
.pagination-container .per_page:hover, .pagination-container .per_page:focus {
  background-color: #f0f0f0;
}
.pagination-container .rows-number {
  position: relative;
  display: inline-block;
  width: 5rem;
}
.pagination-container .rows-number:after {
  content: " ";
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: 18px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #aaa;
}
.pagination-container .page-number {
  font-family: sans-serif;
  font-size: 14px;
  color: #333;
}
.pagination-container .pagination-info {
  color: #4a5568;
  font-size: 14px;
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
  line-height: 1.375;
}
.pagination-container .pagination-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-right: 2rem;
}
.pagination-container .pagination-buttons .button {
  border-radius: 10000px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.pagination-container .pagination-buttons .button .icon {
  position: relative;
}
.pagination-container .pagination-buttons .button .icon.arrow-left::before, .pagination-container .pagination-buttons .button .icon.arrow-right::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border: solid #4a5568;
  border-width: 0 2px 2px 0;
}
.pagination-container .pagination-buttons .button .icon.arrow-left::before {
  transform: translate(-50%, -50%) rotate(135deg);
}
.pagination-container .pagination-buttons .button .icon.arrow-right::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.pagination-container .pagination-buttons .button:hover {
  background-color: #e6ebed;
  transition: all;
  cursor: pointer;
}
.create-profile-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  font-family: sans-serif;
  background-color: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: -1px 1px 14px 2px rgba(235, 225, 225, 0.75);
  -webkit-box-shadow: -1px 1px 14px 2px rgba(235, 225, 225, 0.75);
  -moz-box-shadow: -1px 1px 14px 2px rgba(235, 225, 225, 0.75);
}
.create-profile-container .section-title {
  width: 40%;
}
.create-profile-container .section-title h5 {
  margin-top: -2px;
  font-size: 1.25rem;
}
.create-profile-container .section-title p {
  margin-top: -28px;
  color: #637381;
}
.create-profile-container .section-form {
  width: 60%;
}
.title-page {
  color: var(--text-primary, #212b36);
  font-family: "Public Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.back-link {
  font-family: sans-serif;
  margin-bottom: -12px;
}
.filled-button {
  padding: 1rem 2rem;
  background-color: #ff5c54;
  color: white;
  border: none;
  border-radius: 8px;
  display: inline-block;
  padding: 12px 32px;
  background-color: #ff5c54;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Public Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.filled-button:hover {
  cursor: pointer;
  background-color: #2d3748;
}
.outline-button {
  padding: 1rem 2rem;
  border: 1px solid #dbdde2;
  border-radius: 8px;
  display: inline-block;
  padding: 12px 32px;
  color: #212b36;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Public Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.outline-button:hover {
  cursor: pointer;
  background-color: #dbdde2;
}
.action-wrapper {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.select-date {
  position: relative;
  width: 100%;
  font-family: "Public Sans", sans-serif;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(128, 128, 128, 0.2);
}
.select-date .form-label {
  position: absolute;
  font-family: "Public Sans", sans-serif;
  top: -8px;
  left: 10px;
  font-size: 14px;
  color: #888;
  background-color: white;
  padding: 0 4px;
}
.select-date input[type="date"] {
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 200;
  width: 100%;
  color: #111010;
  padding: 8px 10px;
  border: none;
  background-color: transparent;
}
.select-date input[type="date"]:active, .select-date input[type="date"]:focus {
  outline: none;
  box-shadow: none;
}
.select-date input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
}
.select-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 54px;
  font-family: "Public Sans", sans-serif;
  background-color: #fff;
}
.select-toggle .form-check-input {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(128, 128, 128, 0.2);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  cursor: pointer;
}
.select-toggle .form-check-input:checked {
  background-color: #007bff;
  border-color: #007bff;
}
.select-toggle .form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.select-toggle .form-check-label {
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.form-check-input {
  display: none;
}
.toggle-label {
  display: inline-block;
  width: 40px;
  height: 20px;
  background-color: #ccc;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s;
}
.toggle-label::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s;
}
.form-check-input:checked + .toggle-label {
  background-color: #4caf50;
}
.form-check-input:checked + .toggle-label::before {
  transform: translateX(20px);
}
.table-score-details-container {
  padding: 32px;
  gap: 1rem;
  font-family: sans-serif;
  background-color: white;
  border-radius: 12px;
  box-shadow: -1px 1px 14px 2px rgba(235, 225, 225, 0.75);
}
.table-container {
  margin: 20px 0;
}
.table-container .section-title {
  width: 40%;
}
.table-container .section-title h5 {
  margin-top: -2px;
  font-family: sans-serif;
  font-size: 1.25rem;
}
.table-container .section-title p {
  margin-top: -28px;
  color: #637381;
}
.table-wrapper {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 0px;
  border: 1px solid #e3dfdf;
  background-color: #f7f7f7;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.custom-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.custom-table thead {
  background-color: #4caf50;
  color: white;
}
.custom-table thead th {
  padding: 24px 16px;
  text-align: center;
  border-top: none;
  border-left: none;
  border-right: none;
}
.custom-table tbody tr {
  background-color: #fcfcfc;
}
.custom-table tbody tr:hover {
  background-color: #f6f3f3;
}
.custom-table tbody tr td {
  padding: 10px;
  text-align: center;
  width: 20%;
  border-left: none;
  border-right: none;
  border-width: 0.5px;
  border-bottom: 1px dashed #ddd;
}
.custom-table tbody tr td .align-self-center {
  font-size: 1.1rem;
  vertical-align: middle;
}
.custom-table tbody tr .align-self-center {
  vertical-align: middle;
}
.custom-table tbody tr:last-child {
  border-bottom: none;
}
.custom-table tbody tr:last-child td {
  padding: 2rem 2rem !important;
  border-bottom: none !important;
}
.form-control-disabled {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: transparent !important;
  box-sizing: border-box;
}
.score-input-wrapper {
  border: 1px solid #bfb5b5 !important;
  border-radius: 8px;
  border-top: none;
  margin: 4px !important;
  padding: 4px 20px;
}
.form-control-score {
  width: 100%;
  padding: 10px !important;
  background-color: transparent !important;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 1.1rem;
  text-align: center;
  line-height: normal;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none !important;
  border: none !important;
}
.form-control-score:focus {
  outline: none !important;
  border: none !important;
}
.total-score-section {
  margin-top: 2rem;
  box-sizing: border-box;
  font-family: sans-serif;
}
.total-score-section .total-score {
  padding: 16px 40px;
  border-radius: 12px;
  width: auto;
  border: 1px solid #d6cece !important;
}
.total-score-section input {
  width: 100%;
  border: none;
  font-size: 16px;
  background-color: transparent !important;
}
.form-tabel {
  padding: 5px 10px;
}
