@charset "UTF-8";
.switch {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 60px;
}

.switch input {
  display: none;
}

.slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
}

.slider:before {
  background: url("trackpoint.png") no-repeat 0 0;
  background-size: 100%;
  content: "";
  display: inline-block;
  position: absolute;
  transition: 0.4s;
  width: 30px;
  height: 30px;
  top: 2px;
  left: 2px;
}

input:checked + .slider {
  background-color: #66bb6a;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

* {
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  box-sizing: border-box;
}

html {
  margin: 1rem;
}

.header {
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.header h1 {
  flex-grow: 1;
}

html[data-bs-theme=light] .dt-button-active::before {
  background-color: red;
  box-shadow: 0 0 6px red;
}

html[data-bs-theme=dark] {
  background-color: #2d3436;
}
html[data-bs-theme=dark] .dt-button-active::before {
  background-color: greenyellow;
  box-shadow: 0 0 6px greenyellow;
}
html[data-bs-theme=dark] td,
html[data-bs-theme=dark] th,
html[data-bs-theme=dark] .dt-layout-row {
  color: #dfe6e9;
}
html[data-bs-theme=dark] a:link {
  color: #74b9ff;
}
html[data-bs-theme=dark] .header,
html[data-bs-theme=dark] h1 {
  color: #dfe6e9;
}
html[data-bs-theme=dark] .logo-i:before {
  color: #dfe6e9;
}
html[data-bs-theme=dark] .theme-icon > img {
  filter: invert(100%);
}
html[data-bs-theme=dark] {
  /* Dark theme variant for search icon color */
}
html[data-bs-theme=dark] #myTable_wrapper .dt-search input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dfe6e9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
}

.logo {
  transform: rotate(-35deg);
  display: inline-block;
  overflow: visible;
}
.logo .logo-p {
  color: #E02826;
}
.logo .logo-a {
  color: #5AA050;
}
.logo .logo-d {
  color: #4076B2;
}
.logo .logo-i {
  color: #E02826;
  position: relative;
}
.logo .logo-i:before {
  content: "ı";
  position: absolute;
  color: black;
}

#myTable_wrapper .dt-layout-row {
  display: flex;
  flex-flow: column-reverse;
}
#myTable_wrapper .dt-layout-row .dt-search label {
  display: none;
}
#myTable_wrapper .dt-layout-row .dt-search {
  display: flex;
  flex-grow: 1;
  align-items: center;
  text-align: unset !important;
  margin-bottom: 0.5rem;
}
#myTable_wrapper .dt-layout-row .dt-search input {
  font-size: 150%;
  flex-grow: 1;
  border-radius: 4px;
  /* search icon (light theme) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 18px 18px;
  padding-left: 2.4rem;
}

.dt-buttons {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

.buttons-columnVisibility {
  flex: 10%;
  position: relative;
  background-color: #1b1b1b;
  color: #f0f0f0;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  padding: 0.25em 1.25em 0.25em 1.5em !important;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  margin: 0.5rem 0.25rem 0.5rem 0.25rem !important;
}

.buttons-columnVisibility:hover {
  background-color: #232323;
}

.buttons-columnVisibility-active {
  margin: 0.5rem 0.25rem 0.5rem 0.25rem !important;
  transform: translateY(2px);
  box-shadow: inset 0 -1px 2px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* LED indicator using ::before */
.buttons-columnVisibility::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  background-color: darkgray;
  border-radius: 50%;
}

.dt-button-active::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  background-color: greenyellow;
  border-radius: 50%;
  box-shadow: 0 0 6px greenyellow;
}
.dt-button-active::after {
  display: none !important;
}

.theme-control {
  display: grid;
  align-items: center;
  height: min-content;
  grid-template-columns: 2fr 3fr 2fr;
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 0px;
}
.theme-control .switch {
  grid-area: 1/2/2/3;
}
.theme-control #brightness_up {
  grid-area: 1/1/2/3;
}
.theme-control #brightness_down {
  grid-area: 1/3/2/4;
}
.theme-control .theme-icon {
  display: flex;
  align-items: center;
  max-height: 24px;
}
.theme-control .theme-icon > span {
  font-size: 24px;
  user-select: none;
}
.theme-control .theme-icon > img {
  display: flex;
  margin-right: 2px;
  max-width: inherit;
  max-height: inherit;
  height: inherit;
  width: inherit;
  object-fit: cover;
  user-select: none;
}

/*# sourceMappingURL=style.css.map */
