table {
  border-collapse: collapse;
  width: 100%;
}

.table_container {
}

th, td {
  padding: 8px;
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-medium);
}

th {
  width: auto;
  background-color: var(--color-extra-light);
  color: var(--color-accent);
  padding: 12px 5px; /* Added padding for table head elements */
  font-weight: 500;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-light);
  border-radius: 34px; /* Added border-radius for round edges */
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%; /* Added border-radius for round edges */
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--color-accent);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--color-accent);
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

.circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 auto;

}

.green {
  background-color: var(--color-accent); /* Green */
}

.red {
  background-color: var(--color-accent-2); /* Red */
}

th:first-child {
  text-align: left;
  padding-left: 20px;
  border-radius: 6px 0 0 6px;
}
th:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 6px 6px 0;
}

.table_options {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.table_option_icon {
  font-size: var(--font-m);
  color: var(--color-medium);
  padding: 6px;
  border-radius: 4px;
  transition: ease-in-out 0.25s;
  cursor: pointer;
  border-radius: 6px;
  border: 1px solid var(--color-light);
}

.table_option_icon:hover {
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

td:nth-child(1) {
  padding-left: 20px;
}

.audit_question_answer_table_cell{
  display: block !important;
  flex-direction: column;
}

td:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

tr {
  border-bottom: 1px solid var(--color-light);
}

table thead tr {
  border-bottom: none;
}

.styled-checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1px solid var(--color-medium);
  outline: none;
  cursor: pointer;
}

.styled-checkbox:checked {
  background-color: var(--color-accent);
}

.text_table_empty {
    display: table-cell!important;
    text-align: center;
}