@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/montserrat-v31-latin-200.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 200;
  src: url("../fonts/montserrat-v31-latin-200italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/montserrat-v31-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/montserrat-v31-latin-400italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/montserrat-v31-latin-600.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 600;
  src: url("../fonts/montserrat-v31-latin-600italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/montserrat-v31-latin-700.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/montserrat-v31-latin-700italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/montserrat-v31-latin-800.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 800;
  src: url("../fonts/montserrat-v31-latin-800italic.woff2") format("woff2");
}
body {
  padding: 50px;
  font: 14px Montserrat, sans-serif;
  width: 100%;
  height: 100%;
}

html {
  width: 100%;
  height: 100%;
}

a {
  color: #00B7FF;
}

.login {
  background-image: url("/images/backgrounds/piccadilly-circus.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-items: center;
  align-items: center;
}
.login .container {
  background-color: rgba(0, 0, 0, 0.7);
  width: 450px;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  text-align: center;
}
.login .container form {
  display: flex;
  flex-direction: column;
}
.login .container form input {
  margin-bottom: 5px;
  padding: 5px;
}
.login .container form .button {
  margin-top: 10px;
  padding: 10px;
  font-weight: bold;
  text-transform: uppercase;
  background: #0c6ce7;
  border: none;
  color: white;
}
.login .container p {
  margin-top: 10px;
  margin-bottom: 30px;
}
.login .container .logo {
  width: 70%;
  margin-bottom: 20px;
}
.login .container h1 {
  font-size: 2em;
}

.home {
  background-image: linear-gradient(to right, #fff, #f8edfa);
}
.home header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home header .logo {
  width: 75px;
}
.home section {
  margin-top: 60px;
}
.home section .nav-tabs {
  margin-top: 30px;
  margin-bottom: 10px;
  border-bottom: 1px solid #340050;
}
.home section .nav-tabs .nav-link {
  color: black;
}
.home section .nav-tabs .nav-link.active {
  background-color: #340050;
  border-color: #340050;
  color: white;
}
.home section .nav-tabs .nav-item:focus .nav-link:hover {
  border-color: #340050;
  isolation: isolate;
  background-color: rgba(149, 137, 255, 0.7);
}
.home section .table > :not(:last-child) > :last-child > * {
  border-bottom-color: rgba(52, 0, 80, 0.7);
}
.home section thead tr {
  border-color: rgba(52, 0, 80, 0.7);
}
.home section tbody tr {
  border-color: rgba(52, 0, 80, 0.1);
}

:root {
  --md-surface: #f7f7fb;
  --md-surface-high: #ffffff;
  --md-surface-variant: #f0edf9;
  --md-on-surface: #1f1b2d;
  --md-outline: rgba(31, 27, 45, 0.18);
  --md-outline-strong: rgba(31, 27, 45, 0.35);
  --md-primary: #6200ee;
  --md-primary-variant: #3700b3;
  --md-on-primary: #ffffff;
  --md-accent: #03dac6;
  --md-surface-gradient: radial-gradient(circle at 15% 20%, #fff9ff 0, #f5efff 45%, #8c7de1 100%);
}

body.home {
  min-height: 100vh;
  padding: 32px 32px 48px;
  background: var(--md-surface-gradient);
  color: var(--md-on-surface);
}
body.home header h1 {
  font-size: clamp(2rem, 2.6vw, 2.4rem);
  margin-bottom: 0;
  color: var(--md-on-surface);
}
body.home header .row {
  align-items: center;
}
body.home section {
  margin-top: 48px;
}
body.home section thead th {
  color: var(--md-on-surface);
}
body.home section .nav-tabs {
  border-bottom: 1px solid var(--md-outline-strong);
}
body.home section .nav-tabs .nav-link {
  color: var(--md-on-surface);
}
body.home section .nav-tabs .nav-link.active {
  background-color: var(--md-primary);
  border-color: var(--md-primary);
  color: var(--md-on-primary);
}
body.home section .table > :not(:last-child) > :last-child > * {
  border-bottom-color: var(--md-outline);
}
body.home section .panel-details-row td {
  background: var(--md-surface-high);
  color: var(--md-on-surface);
  border-top: 1px solid var(--md-outline-strong);
  border-bottom: 1px solid var(--md-outline-strong);
}

.home .dataTables_wrapper .dataTables_length label,
.home .dataTables_wrapper .dataTables_filter label {
  color: var(--md-on-surface);
}
.home .dataTables_wrapper .dataTables_length select,
.home .dataTables_wrapper .dataTables_filter input {
  color: var(--md-on-surface);
  background: var(--md-surface-high);
  border: 1px solid var(--md-outline-strong);
}
.home .dataTables_wrapper .dataTables_filter input::placeholder {
  color: var(--md-on-surface);
  opacity: 0.7;
}

.panel-details-table {
  background: var(--md-surface-high);
  color: var(--md-on-surface);
  border: 1px solid var(--md-outline-strong);
}
.panel-details-table td, .panel-details-table th {
  border-color: var(--md-outline);
}

.user-info-box {
  background: var(--md-surface-high);
  border: 1px solid var(--md-outline);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 45px rgba(15, 6, 40, 0.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.user-info-box .logo {
  width: 90px;
  border-radius: 50%;
  object-fit: cover;
}

.theme-toggle-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.user-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(52, 0, 80, 0.12);
}

.user-name,
.user-role {
  font-weight: 600;
  color: var(--md-on-surface);
}

.logout-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--md-outline-strong);
  color: var(--md-on-surface);
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.25s ease, color 0.25s ease;
}
.logout-btn:hover {
  background: var(--md-surface-variant);
}

.row-all-approved {
  background-color: #e8f7ec !important;
}

.row-has-rejected {
  background-color: #fdecea !important;
}

.row-has-unapproved {
  background-color: #f8f9fa !important;
}

body.dark-theme {
  --md-surface: #121212;
  --md-surface-high: #1d1b2e;
  --md-surface-variant: #1f2236;
  --md-on-surface: #f2f2f7;
  --md-outline: rgba(255, 255, 255, 0.14);
  --md-outline-strong: rgba(255, 255, 255, 0.26);
  --md-primary: #bb86fc;
  --md-primary-variant: #985eff;
  --md-on-primary: #1a1033;
  --md-accent: #03dac6;
  --md-surface-gradient: radial-gradient(circle at 20% 20%, #1a1830 0, #0f1024 60%, #080816 100%);
  background-color: var(--md-surface);
  color: var(--md-on-surface);
}
body.dark-theme .home {
  background: var(--md-surface-gradient);
  color: var(--md-on-surface);
}
body.dark-theme .home section .table {
  color: var(--md-on-surface);
}
body.dark-theme .user-info-box {
  background: var(--md-surface-high);
  border-color: var(--md-outline-strong);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}
body.dark-theme .logout-btn {
  border-color: var(--md-outline-strong);
  color: var(--md-on-surface);
  background: rgba(255, 255, 255, 0.08);
}
body.dark-theme header h1 {
  color: var(--md-on-surface);
}
body.dark-theme .alert-info {
  background-color: rgba(187, 134, 252, 0.15);
  border-color: rgba(187, 134, 252, 0.4);
  color: var(--md-on-surface);
}
body.dark-theme .panel-details-row td {
  background: var(--md-surface-variant);
  color: var(--md-on-surface);
  border-top: 1px solid var(--md-outline-strong);
  border-bottom: 1px solid var(--md-outline-strong);
}
body.dark-theme .panel-details-table {
  background: var(--md-surface-variant);
  color: var(--md-on-surface);
  border: 1px solid var(--md-outline-strong);
}
body.dark-theme .panel-details-table td, body.dark-theme .panel-details-table th {
  border-color: var(--md-outline);
}
body.dark-theme .dataTables_wrapper,
body.dark-theme .dataTables_wrapper .dataTables_length,
body.dark-theme .dataTables_wrapper .dataTables_filter,
body.dark-theme .dataTables_wrapper .dataTables_info,
body.dark-theme .dataTables_wrapper .dataTables_paginate {
  color: var(--md-on-surface);
}
body.dark-theme .dataTables_wrapper .dataTables_length select,
body.dark-theme .dataTables_wrapper .dataTables_filter input {
  background-color: var(--md-surface-variant);
  color: var(--md-on-surface);
  border: 1px solid var(--md-outline-strong);
}
body.dark-theme table.dataTable {
  color: var(--md-on-surface);
}
body.dark-theme table.dataTable thead th,
body.dark-theme table.dataTable thead td {
  color: var(--md-on-surface);
  border-bottom: 1px solid var(--md-outline-strong);
}
body.dark-theme table.dataTable.stripe tbody tr.odd, body.dark-theme table.dataTable.display tbody tr.odd {
  background-color: rgba(255, 255, 255, 0.02);
}
body.dark-theme table.dataTable.stripe tbody tr.even, body.dark-theme table.dataTable.display tbody tr.even {
  background-color: rgba(255, 255, 255, 0.05);
}
body.dark-theme table.dataTable.hover tbody tr:hover, body.dark-theme table.dataTable.display tbody tr:hover {
  background-color: rgba(187, 134, 252, 0.15);
}
body.dark-theme div.dtsp-panesContainer {
  background-color: var(--md-surface);
  color: var(--md-on-surface);
}
body.dark-theme div.dtsp-searchPane {
  background-color: var(--md-surface-high);
  border: 1px solid var(--md-outline-strong);
}
body.dark-theme div.dtsp-topRow {
  background-color: var(--md-surface-high);
  color: var(--md-on-surface);
}
body.dark-theme div.dtsp-topRow input.dtsp-paneInputButton,
body.dark-theme div.dtsp-topRow button.dtsp-paneButton {
  background-color: var(--md-surface-variant);
  border: 1px solid var(--md-outline-strong);
  color: var(--md-on-surface);
}
body.dark-theme div.dtsp-topRow input.dtsp-paneInputButton:hover,
body.dark-theme div.dtsp-topRow button.dtsp-paneButton:hover {
  background-color: var(--md-surface-variant);
  border-color: var(--md-primary);
}
body.dark-theme div.dtsp-searchCont input {
  background-color: var(--md-surface-variant);
  border: 1px solid var(--md-outline-strong);
  color: var(--md-on-surface);
}
body.dark-theme div.dtsp-searchCont input::placeholder {
  color: var(--md-on-surface);
  opacity: 0.6;
}
body.dark-theme div.dtsp-searchPane table.dataTable {
  background-color: var(--md-surface-high);
  color: var(--md-on-surface);
}
body.dark-theme div.dtsp-searchPane table.dataTable thead th {
  background-color: var(--md-surface-high);
  color: var(--md-on-surface);
  border-bottom: 1px solid var(--md-outline-strong);
}
body.dark-theme div.dtsp-searchPane table.dataTable tbody td {
  background-color: var(--md-surface-high);
  color: var(--md-on-surface);
  border-color: var(--md-outline);
}
body.dark-theme div.dtsp-searchPane table.dataTable tbody tr:hover td {
  background-color: rgba(187, 134, 252, 0.12);
}
body.dark-theme div.dtsp-searchPane table.dataTable tbody tr.selected td {
  background-color: rgba(187, 134, 252, 0.2);
  color: var(--md-on-surface);
}
body.dark-theme div.dtsp-searchPane .dataTables_scrollHead,
body.dark-theme div.dtsp-searchPane .dataTables_scrollBody {
  background-color: var(--md-surface-high);
  border: 1px solid var(--md-outline);
}
body.dark-theme div.dtsp-searchPane .dtsp-countColumn,
body.dark-theme div.dtsp-searchPane .dtsp-nameCont {
  color: var(--md-on-surface);
}
body.dark-theme div.dtsp-title {
  color: var(--md-on-surface);
}
body.dark-theme button.dtsp-collapseAll,
body.dark-theme button.dtsp-showAll,
body.dark-theme button.dtsp-clearAll {
  color: var(--md-on-surface);
  background-color: var(--md-surface-variant);
  border: 1px solid var(--md-outline-strong);
}
body.dark-theme button.dtsp-collapseAll:hover,
body.dark-theme button.dtsp-showAll:hover,
body.dark-theme button.dtsp-clearAll:hover {
  background-color: var(--md-surface-variant);
  border-color: var(--md-primary);
}

@media (max-width: 768px) {
  body.home {
    padding: 24px 20px 36px;
  }
  .home header .row {
    flex-direction: column;
  }
  .user-info-box {
    width: 100%;
  }
}
.thumbs.drop-active {
  outline: 3px dashed #0d6efd;
  outline-offset: 6px;
  background: rgba(13, 110, 253, 0.06);
  border-radius: 10px;
}

tr.parent-row {
  background-color: #877ef1 !important;
}

tr.parent-row:hover {
  background-color: #6f66ce !important;
}

.parent-child-row .child-block {
  width: auto !important;
}

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