/**
 * Reset
 */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
 * Font
 */
/* inter-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter-v20-latin_latin-ext-regular-ohHUmxR.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/inter-v20-latin_latin-ext-500-od0EG0g.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/inter-v20-latin_latin-ext-700-qxsW-8b.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-900 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/inter-v20-latin_latin-ext-900-m7rblZ6.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-900italic - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 900;
  src: url("../fonts/inter-v20-latin_latin-ext-900italic-g9XAUVw.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/**
 * Base
 */
:root {
  /* Background */
  --app-bg: #ffffff;
  --app-bg-light: #ffffff;
  --app-bg-section: #FAFAFA;
  /* Primary */
  --primary-0: #004de6;
  --primary-1: #0055ff;
  --primary-2: #0044cc;
  /* Text */
  --text-main: #111827;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --white-color: #FFFFFF;
  /* Input */
  --input-bg: #FFFFFF;
  --input-border: #D1D5DB;
  --input-border-focus: #004de6;
  --input-text: #111827;
  --input-placeholder: #9CA3AF;
  /* Button */
  --btn-primary-bg: #004de6;
  --btn-primary-hover: #0055ff;
  --btn-primary-text: #FFFFFF;
  /* Typography */
  --font-size-base: 16px;
  /* SUCCESS */
  --alert-success-0: #1FA97C; /* primary */
  --alert-success-1: #E6F6F0; /* background */
  --alert-success-2: #9EDFC8; /* border light */
  --alert-success-3: #158A64; /* border dark */
  --alert-success-4: #0E5F45; /* text */
  /* WARNING */
  --alert-warning-0: #F5A524;
  --alert-warning-1: #FFF4E0;
  --alert-warning-2: #FFD38A;
  --alert-warning-3: #D48806;
  --alert-warning-4: #6B4A03;
  /* DANGER */
  --alert-danger-0: #E53935;
  --alert-danger-1: #FDEAEA;
  --alert-danger-2: #F5B5B5;
  --alert-danger-3: #C62828;
  --alert-danger-4: #7A1616;
  /* INFO */
  --alert-info-0: #1E88E5;
  --alert-info-1: #EAF3FC;
  --alert-info-2: #B6D8F5;
  --alert-info-3: #1565C0;
  --alert-info-4: #0D3C75;
  /* Sidebar - LIGHT */
  --sidebar-bg: #f7f7f8;
  --sidebar-text: #6c757d;
  --sidebar-text-hover: #22252a;
  --sidebar-active-bg: #e0e2e5;
  --sidebar-active-text: #212529;
  --sidebar-border: #e9eaed;
  --sidebar-submenu-line: #dbdde1;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--app-bg);
}

body {
  margin: 0;
  padding: 0;
  font-size: var(--font-size-base);
  line-height: 1.25;
  background: var(--app-bg);
  color: var(--text-main);
  font-family: "Inter", sans-serif;
}
body.sign-in {
  display: flex;
  align-items: center;
  height: 100%;
  background-color: var(--app-bg);
}
body.sign-in .container {
  width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.text-primary {
  color: var(--primary-0) !important;
}

.link-primary {
  color: var(--primary-0) !important;
}
.link-primary:hover {
  color: var(--primary-1) !important;
}

.link-edit {
  color: var(--primary-0) !important;
  font-size: 12px;
}
.link-edit:hover {
  color: var(--primary-1) !important;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 20px;
}
@media (min-width: 1180px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
}
.container.content {
  padding-bottom: 40px;
}

.card {
  border: 1px solid #e9eaed;
}

/**
 * Layout
 */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
}
@media (min-width: 1180px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1440px) {
  .container {
    width: 100%;
    max-width: 1320px;
  }
}

.profile .dropdown-menu {
  font-size: 14px;
}
.profile .nav-link {
  line-height: normal;
  color: #212529;
  margin-top: 5px;
}
.profile .nav-link i {
  font-size: 24px;
}

aside {
  width: 280px;
  height: 100vh;
  background: var(--sidebar-bg);
  position: fixed;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05) !important;
}
aside .navbar.navbar-vertical {
  overflow-y: scroll;
  height: inherit;
  flex-wrap: nowrap;
}
aside .navbar.navbar-vertical .container-lg {
  margin: auto;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  height: inherit;
}
aside nav.navbar {
  padding: 0;
}
aside .navbar-brand {
  padding: 8px 16px;
  display: flex;
  justify-content: center;
}
aside .navbar-brand img {
  height: 40px;
}
aside .collapse:not(.show) {
  display: none;
}
@media (min-width: 768px) {
  aside #sidenavLargeCollapse {
    display: block !important;
  }
}
aside .nav-item .nav-link {
  color: var(--sidebar-text);
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
}
aside .nav-item .nav-link i {
  margin-right: 12px;
}
aside .nav-item .nav-link .badge {
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  line-height: 1.4;
  background-color: var(--primary-0) !important;
  color: #fff;
}
aside .nav-item .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.03);
  text-decoration: none;
}
aside .nav-item .nav-link:focus, aside .nav-item .nav-link:hover {
  color: var(--sidebar-text-hover);
}
aside .nav-item .nav-link.active {
  background-color: var(--sidebar-active-bg);
  color: var(--sidebar-active-text);
  font-weight: 500;
}
aside .nav-item .nav {
  padding-left: 32px;
}
aside .navbar-nav .nav:before {
  border-right: 1px solid var(--sidebar-submenu-line);
  bottom: 26.5px;
  content: "";
  left: 16px;
  position: absolute;
  top: -4px;
}
aside .navbar-nav .nav-link[data-bs-toggle=collapse]:after {
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 9' width='9' height='9' fill='hsl%28220, 10%, 75%%29'%3e%3cpath d='M4 0 L4 4 L0 4 L0 5 L4 5 L4 9 L5 9 L5 5 L9 5 L9 4 L5 4 L5 0 Z' /%3e%3c/svg%3e");
  margin-left: auto;
  transform-origin: center center;
  transition: all 0.3s ease-in-out;
}
aside .navbar-nav .nav-link[data-bs-toggle=collapse][aria-expanded=true]:after {
  transform: rotate(45deg);
}
aside .navbar-nav .nav-pills {
  position: relative;
  display: flex;
  flex-direction: column;
}
aside .navbar-nav .nav-pills .nav-link {
  position: relative;
  padding: 6px 12px;
  margin: 4px 0;
  font-size: 14px;
  color: var(--sidebar-text);
  display: block;
  width: 100%;
}
aside .navbar-nav .nav-pills .nav-link:before {
  border-bottom: 1px solid var(--sidebar-submenu-line);
  border-bottom-left-radius: 8px;
  border-left: 1px solid var(--sidebar-submenu-line);
  bottom: 50%;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  transform: translateX(-100%);
  width: 16px;
}
aside .navbar-nav .nav-link.active {
  background-color: var(--sidebar-submenu-line);
  border-color: transparent;
  color: var(--sidebar-text-hover);
}
aside .navbar-nav .nav-link:hover {
  text-decoration: none;
}
aside .nav,
aside .nav-pills {
  display: flex;
  flex-direction: column;
}
aside .nav .nav-link,
aside .nav-pills .nav-link {
  margin: 3px 0;
}
aside .dropdown-menu {
  background: #ffffff;
  border: 1px solid var(--sidebar-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
aside .dropdown-menu .account-name {
  color: var(--sidebar-text-hover);
  padding: 12px 16px;
}
aside .dropdown-menu .account-name i {
  color: var(--sidebar-text);
  display: block;
  font-style: normal;
}
aside .dropdown-menu .dropdown-divider {
  border-color: var(--sidebar-border);
}
aside .dropdown-menu .dropdown-item {
  color: #676f7e;
}
aside .dropdown-menu .dropdown-item:hover {
  background-color: #f7f7f8;
  color: var(--sidebar-text-hover);
  text-decoration: none;
}
aside .dropdown-menu .dropdown-item i {
  color: var(--sidebar-text);
}

#sidenavLargeCollapse {
  padding: 16px;
  overflow-y: auto;
  align-items: stretch;
  flex-direction: column;
  width: 100%;
}

#topnav-sm {
  padding: 15px 0;
  display: block !important;
}
#topnav-sm .navbar-toggler {
  border: 1px solid #212529;
  color: #212529;
}
#topnav-sm .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23212529' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#topnav-sm .profile .nav-link {
  color: #212529;
}
#topnav-sm .profile .nav-link i {
  font-size: 24px;
}
#topnav-sm .profile .nav-link:hover {
  color: var(--primary-0);
}
#topnav-sm .profile .dropdown-menu {
  background: var(--app-bg-light);
  border-color: #E5E7EB;
}
#topnav-sm .profile .dropdown-menu .account-name {
  color: var(--text-main);
}
#topnav-sm .profile .dropdown-menu .account-name i {
  color: var(--text-muted);
}
#topnav-sm .profile .dropdown-menu .dropdown-divider {
  border-color: #E5E7EB;
}
#topnav-sm .profile .dropdown-menu .dropdown-item {
  color: var(--text-main);
}
#topnav-sm .profile .dropdown-menu .dropdown-item:hover {
  background-color: #f7f7f8;
}
#topnav-sm .profile .dropdown-menu .dropdown-item i {
  color: var(--text-muted);
}

.content {
  padding-bottom: 40px;
}

main {
  margin-left: 280px;
  background: var(--app-bg);
}

@media (max-width: 768px) {
  aside {
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    position: initial;
  }
  aside .d-flex.vh-100,
  aside .d-flex.flex-column.flex-md-row {
    flex-direction: column;
  }
  aside .collapse:not(.show) {
    display: none;
  }
  aside .navbar.navbar-vertical {
    flex-wrap: wrap;
    overflow: initial;
    height: auto;
  }
  aside .container-lg {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between;
    padding: 0;
  }
  aside .navbar-toggler {
    display: inline-block;
    vertical-align: middle;
    border: 1px solid var(--sidebar-text);
    border-radius: 6px;
    color: var(--sidebar-text);
    padding: 4px 8px;
  }
  aside .navbar-toggler:focus {
    box-shadow: none;
  }
  aside .navbar-toggler .navbar-toggler-icon {
    filter: invert(1);
  }
  main {
    margin-left: 0;
  }
  #topnav-sm {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.avatar {
  align-items: center;
  background-color: #f7f7f8;
  border-radius: 800px;
  display: inline-flex;
  height: 47px;
  justify-content: center;
  min-width: 47px;
  position: relative;
  text-transform: uppercase;
  width: 47px;
}
.avatar .avatar-img {
  border-radius: inherit;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ts-wrapper.is-invalid .ts-control {
  border-color: var(--bs-form-invalid-border-color) !important;
}
.ts-wrapper.is-invalid.form-select.is-valid:not([multiple]):not([size]), .ts-wrapper.is-invalid.form-select.is-valid:not([multiple])[size="1"], .ts-wrapper.is-invalid.form-select.is-invalid:not([multiple]):not([size]), .ts-wrapper.is-invalid.form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 0;
  --bs-form-select-bg-icon: none;
}

.ts-wrapper.is-valid .ts-control {
  border-color: var(--bs-form-valid-border-color) !important;
}
.ts-wrapper.is-valid.form-select.is-valid:not([multiple]):not([size]), .ts-wrapper.is-valid.form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 0;
  --bs-form-select-bg-icon: none;
}

.ts-wrapper.form-select {
  padding: 0;
  border: 0;
  background: none;
}

.table-files {
  border-top: 1px solid #e9eaed;
}

/*
 * Components
 */
.alert {
  position: relative;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  text-align: left;
  padding: 12px 35px 12px 20px;
  font-size: 14px;
}
.alert button {
  top: -1px;
  position: relative;
  cursor: pointer;
}
.alert button:focus {
  outline: 0;
}
.alert.alert-danger {
  background-color: var(--alert-danger-0);
  border-color: var(--alert-danger-0);
  color: #fff;
}
.alert.alert-success {
  background-color: var(--alert-success-0);
  border-color: var(--alert-success-0);
  color: #fff;
}
.alert.alert-warning {
  background-color: var(--alert-warning-0);
  border-color: var(--alert-warning-0);
  color: #fff;
}
.alert .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.close {
  float: right;
  line-height: 1;
  opacity: 0.5;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  appearance: none;
}

a.close.disabled {
  pointer-events: none;
}

.text-danger {
  color: var(--alert-danger-3) !important;
}

.text-warning {
  color: var(--alert-warning-3) !important;
}

.text-success {
  color: var(--alert-success-3) !important;
}

.btn {
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  user-select: none;
  display: inline-block;
  line-height: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-radius: 4px;
}
.btn i {
  font-size: 12px !important;
}
.btn:hover {
  text-decoration: none;
}
.btn:hover .loader {
  background-color: var(--primary-1);
}
.btn:hover .loader:after {
  background: var(--primary-1);
}
.btn.btn-primary {
  color: var(--white-color);
  background-color: var(--primary-0);
  border-color: var(--primary-0);
}
.btn.btn-primary:disabled, .btn.btn-primary.disabled, .btn.btn-primary:hover {
  background-color: var(--primary-1) !important;
  border-color: var(--primary-1) !important;
  color: var(--white-color);
}
.btn.btn-primary:disabled .loader, .btn.btn-primary.disabled .loader, .btn.btn-primary:hover .loader {
  background-color: var(--primary-1) !important;
}
.btn.btn-primary:disabled .loader:after, .btn.btn-primary.disabled .loader:after, .btn.btn-primary:hover .loader:after {
  background: var(--primary-1) !important;
}
.btn.btn-primary:focus {
  background-color: var(--primary-0) !important;
  border-color: var(--primary-0) !important;
  box-shadow: none;
}
.btn.btn-primary:focus .loader {
  background-color: var(--primary-0) !important;
}
.btn.btn-primary:focus .loader:after {
  background: var(--primary-0) !important;
}
.btn.btn-normal {
  padding: 8px 9px;
}
.btn.btn-normal i {
  font-size: 17px !important;
}
.btn.btn-sm {
  padding: 8px;
  font-size: 12px;
}
.btn.btn-xsm {
  padding: 0;
  font-size: 8px;
}
.btn.btn-xsm.btn-primary {
  color: var(--primary-0);
  background: transparent;
  border-color: transparent;
}
.btn:focus, .btn.focus {
  outline: 0;
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
  box-shadow: none;
}

.btn-block {
  display: block;
  width: 100%;
}

.loader {
  font-size: 10px;
  text-indent: -9999em;
  width: 2.3em;
  height: 2.3em;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  animation: load3 1.4s infinite linear;
  transform: translateZ(0);
  background: linear-gradient(to right, var(--white-color) 10%, rgba(255, 255, 255, 0) 42%);
}
.loader:before {
  width: 50%;
  height: 50%;
  background: var(--white-color);
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.loader:after {
  background-color: var(--primary-0);
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  inset: 0;
}

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.modal-dialog .modal-body .card {
  border: none;
  background: transparent !important;
}
.modal-dialog .modal-body .card .card-body {
  padding: 0;
}
.modal-dialog .modal-title {
  font-weight: 700;
  font-size: 20px;
  color: #000;
}
.modal-dialog .modal-footer .form-actions {
  margin: 0;
  width: 100%;
  justify-content: space-between;
}

.form-control {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--input-text);
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control::placeholder {
  color: var(--input-placeholder);
}
.form-control:focus {
  outline: none;
  border-color: var(--input-border-focus);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.form-control-sm {
  height: 34px;
  padding: 4px 8px;
}

.ts-wrapper {
  padding: 0 !important;
  border: 0 !important;
}
.ts-wrapper.is-invalid .ts-control {
  border-color: var(--alert-danger-0) !important;
}
.ts-wrapper.is-invalid.form-select.is-valid:not([multiple]):not([size]), .ts-wrapper.is-invalid.form-select.is-valid:not([multiple])[size="1"], .ts-wrapper.is-invalid.form-select.is-invalid:not([multiple]):not([size]), .ts-wrapper.is-invalid.form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 0;
  --bs-form-select-bg-icon: none;
}
.ts-wrapper.is-valid .ts-control {
  border-color: var(--alert-success-0) !important;
}
.ts-wrapper.is-valid.form-select.is-valid:not([multiple]):not([size]), .ts-wrapper.is-valid.form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 0;
  --bs-form-select-bg-icon: none;
}

.show-required label.required::after {
  content: " *";
  color: var(--alert-danger-0);
}
.show-required fieldset .form-check label.required::after {
  content: none;
}
.show-required fieldset legend.required::after {
  content: " *";
  color: var(--alert-danger-0);
}

.form-actions {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  align-items: flex-start;
  flex-wrap: wrap;
}
.form-actions .btn {
  padding: 10px 20px;
  font-size: 14px;
  margin: 10px 0 0 0;
  width: 180px;
  min-height: 48px;
  line-height: 26px;
  order: 1;
}
.form-actions a {
  width: 180px;
  order: 2;
}
.form-actions.btn-bigger .btn {
  padding: 15px 20px;
}
.form-actions .mb-3 {
  margin-bottom: 0 !important;
}
@media (min-width: 405px) {
  .form-actions a.btn {
    order: 0;
  }
}
@media (min-width: 420px) {
  .form-actions {
    justify-content: space-between;
  }
}

.table-view {
  background: var(--app-bg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
  border: 1px solid #e5e5e5;
}
.table-view .table-header {
  padding: 16px 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e9ecef;
}
.table-view .table-header .btn {
  border-radius: 6px;
  font-size: 14px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.table-view .table-header .btn i,
.table-view .table-header .btn .bi {
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.table-view .table,
.table-view .table.table-striped,
.table-view .table.table-bordered,
.table-view .table.table-hover {
  width: 100%;
  margin-bottom: 0;
  border-collapse: collapse;
  border-spacing: 0;
}
.table-view .table,
.table-view .table > thead,
.table-view .table > tbody,
.table-view .table > tr,
.table-view .table > thead > tr,
.table-view .table > tbody > tr,
.table-view .table th,
.table-view .table td,
.table-view .table > thead > tr > th,
.table-view .table > tbody > tr > td,
.table-view .table.table-striped,
.table-view .table.table-striped > thead,
.table-view .table.table-striped > tbody,
.table-view .table.table-striped > tr,
.table-view .table.table-striped > thead > tr,
.table-view .table.table-striped > tbody > tr,
.table-view .table.table-striped th,
.table-view .table.table-striped td,
.table-view .table.table-striped > thead > tr > th,
.table-view .table.table-striped > tbody > tr > td,
.table-view .table.table-bordered,
.table-view .table.table-bordered > thead,
.table-view .table.table-bordered > tbody,
.table-view .table.table-bordered > tr,
.table-view .table.table-bordered > thead > tr,
.table-view .table.table-bordered > tbody > tr,
.table-view .table.table-bordered th,
.table-view .table.table-bordered td,
.table-view .table.table-bordered > thead > tr > th,
.table-view .table.table-bordered > tbody > tr > td,
.table-view .table.table-hover,
.table-view .table.table-hover > thead,
.table-view .table.table-hover > tbody,
.table-view .table.table-hover > tr,
.table-view .table.table-hover > thead > tr,
.table-view .table.table-hover > tbody > tr,
.table-view .table.table-hover th,
.table-view .table.table-hover td,
.table-view .table.table-hover > thead > tr > th,
.table-view .table.table-hover > tbody > tr > td {
  border: none !important;
  border-color: transparent !important;
}
.table-view .table > thead > tr,
.table-view .table.table-striped > thead > tr,
.table-view .table.table-bordered > thead > tr,
.table-view .table.table-hover > thead > tr {
  background: var(--app-bg-light) !important;
  border-bottom: 1px solid #e9ecef !important;
}
.table-view .table > thead th,
.table-view .table.table-striped > thead th,
.table-view .table.table-bordered > thead th,
.table-view .table.table-hover > thead th {
  padding: 12px 16px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
  vertical-align: middle;
  background: transparent;
}
.table-view .table > thead th a,
.table-view .table.table-striped > thead th a,
.table-view .table.table-bordered > thead th a,
.table-view .table.table-hover > thead th a {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.table-view .table > thead th a:hover,
.table-view .table.table-striped > thead th a:hover,
.table-view .table.table-bordered > thead th a:hover,
.table-view .table.table-hover > thead th a:hover {
  color: var(--text-main);
}
.table-view .table > thead th a i,
.table-view .table.table-striped > thead th a i,
.table-view .table.table-bordered > thead th a i,
.table-view .table.table-hover > thead th a i {
  font-size: 12px;
  opacity: 0.6;
}
.table-view .table > thead th a i.active,
.table-view .table.table-striped > thead th a i.active,
.table-view .table.table-bordered > thead th a i.active,
.table-view .table.table-hover > thead th a i.active {
  opacity: 1;
  color: var(--primary-0);
}
.table-view .table > thead th .bi.pull-right,
.table-view .table.table-striped > thead th .bi.pull-right,
.table-view .table.table-bordered > thead th .bi.pull-right,
.table-view .table.table-hover > thead th .bi.pull-right {
  float: none;
  order: -1;
}
.table-view .table > tbody > tr,
.table-view .table.table-striped > tbody > tr,
.table-view .table.table-bordered > tbody > tr,
.table-view .table.table-hover > tbody > tr {
  background: var(--app-bg-light) !important;
  transition: background-color 0.15s ease;
  border-bottom: 1px solid #eee;
}
.table-view .table > tbody > tr:last-child,
.table-view .table.table-striped > tbody > tr:last-child,
.table-view .table.table-bordered > tbody > tr:last-child,
.table-view .table.table-hover > tbody > tr:last-child {
  border-bottom: none;
}
.table-view .table > tbody > tr:nth-child(odd),
.table-view .table.table-striped > tbody > tr:nth-child(odd),
.table-view .table.table-bordered > tbody > tr:nth-child(odd),
.table-view .table.table-hover > tbody > tr:nth-child(odd) {
  background: var(--app-bg-light) !important;
}
.table-view .table > tbody > tr:hover,
.table-view .table.table-striped > tbody > tr:hover,
.table-view .table.table-bordered > tbody > tr:hover,
.table-view .table.table-hover > tbody > tr:hover {
  background: #f8f9fa !important;
}
.table-view .table > tbody td,
.table-view .table.table-striped > tbody td,
.table-view .table.table-bordered > tbody td,
.table-view .table.table-hover > tbody td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-main);
  vertical-align: middle;
  background: transparent !important;
}
.table-view .table > tbody td a:not(.btn),
.table-view .table.table-striped > tbody td a:not(.btn),
.table-view .table.table-bordered > tbody td a:not(.btn),
.table-view .table.table-hover > tbody td a:not(.btn) {
  color: var(--alert-success-0);
  text-decoration: none;
  font-weight: 500;
}
.table-view .table > tbody td a:not(.btn):hover,
.table-view .table.table-striped > tbody td a:not(.btn):hover,
.table-view .table.table-bordered > tbody td a:not(.btn):hover,
.table-view .table.table-hover > tbody td a:not(.btn):hover {
  text-decoration: underline;
}
.table-view .table .actions .btn-group,
.table-view .table .actions .action-buttons,
.table-view .table td:last-child .btn-group,
.table-view .table td:last-child .action-buttons,
.table-view .table.table-striped .actions .btn-group,
.table-view .table.table-striped .actions .action-buttons,
.table-view .table.table-striped td:last-child .btn-group,
.table-view .table.table-striped td:last-child .action-buttons,
.table-view .table.table-bordered .actions .btn-group,
.table-view .table.table-bordered .actions .action-buttons,
.table-view .table.table-bordered td:last-child .btn-group,
.table-view .table.table-bordered td:last-child .action-buttons,
.table-view .table.table-hover .actions .btn-group,
.table-view .table.table-hover .actions .action-buttons,
.table-view .table.table-hover td:last-child .btn-group,
.table-view .table.table-hover td:last-child .action-buttons {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}
.table-view .table-footer {
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e9ecef;
  background: var(--app-bg-light);
}
.table-view .table-footer .footer-info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.table-view .table-footer .footer-info .text-muted {
  font-size: 11px;
  color: var(--text-muted);
}
.table-view .table-footer .footer-info > .btn.export {
  margin-left: auto;
}
.table-view .table-footer .footer-button {
  display: flex;
  gap: 8px;
}
.table-view .table-footer .footer-button .btn {
  border-radius: 6px;
  font-size: 13px;
  padding: 6px 12px;
}
.table-view .table-footer .batch-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.table-view .table-footer .batch-actions > input[type=checkbox] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
.table-view .table-footer .batch-actions form,
.table-view .table-footer .batch-actions > div {
  display: inline-flex;
  align-items: center;
}
.table-view .table-footer .batch-actions select,
.table-view .table-footer .batch-actions .form-select {
  width: auto;
  min-width: 180px;
  font-size: 13px;
  padding: 6px 32px 6px 12px;
  border: 1px solid var(--input-border);
  border-radius: 6px;
  background-color: var(--input-bg);
  cursor: pointer;
  display: inline-block;
}
.table-view .table-footer .batch-actions select:focus,
.table-view .table-footer .batch-actions .form-select:focus {
  border-color: var(--input-border-focus);
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}
.table-view .table-footer .batch-actions .mb-3,
.table-view .table-footer .batch-actions .row,
.table-view .table-footer .batch-actions legend,
.table-view .table-footer .batch-actions input[type=hidden] {
  display: none !important;
}

.btn-action {
  width: 32px;
  height: 32px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: none;
  font-size: 14px;
  transition: opacity 0.15s ease;
}
.btn-action:hover {
  opacity: 0.85;
}
.btn-action.btn-edit, .btn-action.btn-warning {
  background: var(--alert-warning-0);
  color: white;
}
.btn-action.btn-delete, .btn-action.btn-danger {
  background: var(--alert-danger-0);
  color: white;
}
.btn-action.btn-view, .btn-action.btn-info {
  background: var(--alert-info-0);
  color: white;
}
.btn-action.btn-success {
  background: var(--alert-success-0);
  color: white;
}

.pagination-wrapper .pagination {
  margin: 0;
  gap: 4px;
}
.pagination-wrapper .pagination .page-item .page-link {
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--text-main);
  background: transparent;
}
.pagination-wrapper .pagination .page-item .page-link:hover {
  background: #f8f9fa;
}
.pagination-wrapper .pagination .page-item.active .page-link {
  background: var(--primary-0);
  color: white;
}
.pagination-wrapper .pagination .page-item.disabled .page-link {
  color: var(--text-light);
  background: transparent;
}

.table-view .checkbox-cell,
.table-view th.center,
.table-view td.center {
  width: 40px;
  text-align: center !important;
}
.table-view .checkbox-cell label,
.table-view th.center label,
.table-view td.center label {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
}
.table-view .checkbox-cell .lbl,
.table-view th.center .lbl,
.table-view td.center .lbl {
  display: none !important;
}
.table-view .checkbox-cell input[type=checkbox],
.table-view th.center input[type=checkbox],
.table-view td.center input[type=checkbox] {
  margin: 0 !important;
}

@media print {
  .hide-print {
    display: none !important;
  }
}
.card.card-line {
  background: #f7f7f8;
  border: none;
  border-radius: 8px;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 16px;
  position: relative;
}
.card.card-line::after {
  content: "";
  position: absolute;
  left: 75px;
  top: 100%;
  height: 32px;
  border-left: 1px solid #e5e5e5;
}
.card.card-line.border-transparent {
  border-color: #e5e5e5;
}
.card.card-line.mb-7 {
  margin-bottom: 0 !important;
}
.card.card-line .card-body.table-filter {
  padding: 24px 24px 28px;
}
.card.card-line .card-body.table-filter .data {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card.card-line .card-body.table-filter .data .mb-3.row {
  margin-bottom: 0 !important;
  display: flex;
  align-items: center;
}
.card.card-line .card-body.table-filter .data .mb-3.row .col-form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
}
.card.card-line .card-body.table-filter .data .mb-3.row .col-sm-9 .form-control {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
}
.card.card-line .card-body.table-filter .data .mb-3.row .col-sm-9 .form-control:focus {
  border-color: var(--input-border-focus);
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}
.card.card-line .card-body.table-filter .data .mb-3.row .col-sm-9 .form-control:has(.form-check-inline) {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 10px 14px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  align-items: center;
  min-height: auto;
}
.card.card-line .card-body.table-filter .data .mb-3.row .col-sm-9 .form-check-inline {
  margin-right: 0;
  display: inline-flex;
  align-items: center;
}
.card.card-line .card-body.table-filter .data .mb-3.row .col-sm-9 .form-check-inline .form-check {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
  min-height: auto;
}
.card.card-line .card-body.table-filter .data .mb-3.row .col-sm-9 .form-check-inline .form-check-input {
  margin-top: 0;
  margin-right: 0;
  width: 16px;
  height: 16px;
  border: 1px solid var(--input-border);
  border-radius: 3px;
  float: none;
}
.card.card-line .card-body.table-filter .data .mb-3.row .col-sm-9 .form-check-inline .form-check-input:checked {
  background-color: var(--primary-0);
  border-color: var(--primary-0);
}
.card.card-line .card-body.table-filter .data .mb-3.row .col-sm-9 .form-check-inline .form-check-input:focus {
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.15);
}
.card.card-line .card-body.table-filter .data .mb-3.row .col-sm-9 .form-check-inline .form-check-label {
  font-size: 14px;
  color: var(--text-main);
  cursor: pointer;
  margin-bottom: 0;
}
.card.card-line .card-body.table-filter .buttons {
  margin-top: 20px;
}
.card.card-line .card-body.table-filter .buttons .mb-3.row {
  margin-bottom: 0 !important;
}
.card.card-line .card-body.table-filter .buttons .btn {
  border-radius: 6px;
  font-size: 14px;
  padding: 6px 16px;
  font-weight: 500;
  background: var(--primary-0);
  border: none;
  color: white;
  transition: background-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card.card-line .card-body.table-filter .buttons .btn:hover {
  background: var(--primary-1);
}
.card.card-line .card-body.table-filter .buttons .btn i {
  font-size: 14px;
}

.card.card-line + .table-view {
  border-radius: 8px;
  margin-top: 32px;
}

.page-title {
  margin-bottom: 24px;
  padding-top: 24px;
}
.page-title .breadcrumb {
  margin-bottom: 4px;
  padding: 0;
  background: transparent;
  font-size: 13px;
}
.page-title .breadcrumb .breadcrumb-item {
  color: var(--text-muted);
  padding-left: 0;
}
.page-title .breadcrumb .breadcrumb-item a {
  color: var(--primary-0);
  text-decoration: none;
}
.page-title .breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}
.page-title .breadcrumb .breadcrumb-item.active {
  color: var(--text-muted);
}
.page-title .breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}
.page-title .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: var(--text-light);
  padding: 0 8px;
  margin: 0;
}
.page-title h1 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
  line-height: 1.3;
}

.toast-container {
  position: fixed;
  right: 16.5px;
  width: 300px;
  top: 92px;
  z-index: 400;
}
.toast-container .toast {
  max-width: 300px;
  width: 300px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0.25rem;
  position: relative;
}
.toast-container .toast:not(:last-child) {
  margin-bottom: 0.75rem;
}
.toast-container .toast.showing, .toast-container .toast.show {
  display: block;
  opacity: 1;
}
.toast-container .toast.hide {
  display: none;
}
.toast-container .toast {
  /* DANGER */
}
.toast-container .toast.danger {
  background-color: var(--alert-danger-0);
  border-color: var(--alert-danger-0);
  color: #fff;
}
.toast-container .toast {
  /* SUCCESS */
}
.toast-container .toast.success {
  background-color: var(--alert-success-0);
  border-color: var(--alert-success-0);
  color: #fff;
}
.toast-container .toast {
  /* WARNING */
}
.toast-container .toast.warning {
  background-color: var(--alert-warning-0);
  border-color: var(--alert-warning-0);
  color: #fff;
}
.toast-container .toast-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.toast-container .toast-body {
  padding: 0.75rem;
  padding-right: 25px;
}
.toast-container button.close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.hidden {
  display: none !important;
}

.shown {
  display: block !important;
}

header.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--app-bg-light) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
header.sticky-top .py-2 {
  padding: 10px 0 !important;
  border-bottom: none !important;
}
header.sticky-top .logo img {
  height: 40px;
  width: auto;
}
header.sticky-top .nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
@media (min-width: 1040px) {
  header.sticky-top .nav-menu {
    display: flex;
  }
}
header.sticky-top .nav-menu .nav-item.active .nav-link {
  color: var(--primary-0);
}
header.sticky-top .nav-menu .nav-item.active .nav-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--primary-0);
  border-radius: 1px;
}
header.sticky-top .nav-menu .nav-item span {
  margin-top: 4px;
}
header.sticky-top .nav-menu .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 15px;
  text-decoration: none;
  color: #4B5563;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
  position: relative;
}
header.sticky-top .nav-menu .nav-link:hover {
  color: var(--primary-0);
}
header.sticky-top .nav-menu .nav-link i {
  font-size: 24px;
  margin-bottom: 6px;
  position: relative;
}
header.sticky-top .nav-menu .nav-link .badge {
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  color: #fff;
  background: #E53935;
  border-radius: 9px;
}
header.sticky-top .navbar-nav.ps-3 {
  padding-left: 12px !important;
}
header.sticky-top .navbar-nav.ps-3 .profile {
  position: relative;
}
header.sticky-top .navbar-nav.ps-3 .profile .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s ease;
}
header.sticky-top .navbar-nav.ps-3 .profile .nav-link:hover i {
  color: var(--text-main);
}
header.sticky-top .navbar-nav.ps-3 .profile .nav-link i {
  font-size: 26px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
header.sticky-top .navbar-nav.ps-3 .profile .dropdown-menu {
  min-width: 200px;
  padding: 4px;
  background: var(--app-bg-light);
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
header.sticky-top .navbar-nav.ps-3 .profile .dropdown-menu .account-name {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  background: var(--app-bg-light);
}
header.sticky-top .navbar-nav.ps-3 .profile .dropdown-menu .account-name i {
  display: block;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}
header.sticky-top .navbar-nav.ps-3 .profile .dropdown-menu .dropdown-divider {
  margin: 4px 0;
  border-color: #E5E7EB;
}
header.sticky-top .navbar-nav.ps-3 .profile .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--text-main);
  font-size: 14px;
}
header.sticky-top .navbar-nav.ps-3 .profile .dropdown-menu .dropdown-item:hover {
  background: #f7f7f8;
}
header.sticky-top .navbar-nav.ps-3 .profile .dropdown-menu .dropdown-item i {
  font-size: 18px;
  color: var(--text-muted);
  width: 20px;
  text-align: center;
}
header.sticky-top button.navbar-toggler {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  background: transparent;
}
header.sticky-top button.navbar-toggler i {
  font-size: 26px;
  color: var(--text-main);
}
@media (min-width: 1040px) {
  header.sticky-top button.navbar-toggler {
    display: none !important;
  }
}
header.sticky-top .offcanvas .offcanvas-body .navbar-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--text-main);
  font-size: 14px;
}
header.sticky-top .offcanvas .offcanvas-body .navbar-nav .nav-link:hover, header.sticky-top .offcanvas .offcanvas-body .navbar-nav .nav-link.active {
  background: var(--app-bg);
}
header.sticky-top .offcanvas .offcanvas-body .navbar-nav .nav-link.active {
  color: var(--primary-0);
}
header.sticky-top .offcanvas .offcanvas-body .navbar-nav .nav-link i {
  font-size: 18px;
  color: var(--text-muted);
  width: 22px;
  text-align: center;
}
header.sticky-top .offcanvas .offcanvas-body .navbar-nav .nav-link .badge {
  margin-left: auto;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 10px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  color: #fff;
  background: #E53935;
  border-radius: 9px;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.lightbox-image.lightbox-loading {
  opacity: 0.5;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  z-index: 10;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 12px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .lightbox-prev {
    left: 8px;
  }
  .lightbox-next {
    right: 8px;
  }
  .lightbox-close {
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
  }
}
.dropzone {
  border: 2px dashed var(--input-border);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.dropzone:hover, .dropzone.dropzone-active {
  border-color: var(--primary-0);
  background-color: rgba(79, 70, 229, 0.05);
}

.dropzone-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}
.dropzone-placeholder i {
  font-size: 32px;
}

.dropzone-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.dropzone-preview {
  position: relative;
  width: 80px;
  height: 80px;
}
.dropzone-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.dropzone-remove {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border: none;
  background: var(--alert-danger-0);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background-color 0.2s ease;
}
.dropzone-remove:hover {
  background: var(--alert-danger-3);
}

.comment-item {
  display: flex;
  gap: 1rem;
}

.comment-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary-0);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
}

.comment-body {
  flex: 1;
  min-width: 0;
}

.comment-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.comment-author {
  font-weight: 600;
  color: var(--bs-body-color);
}

.comment-email {
  color: var(--bs-secondary-color);
  font-size: 0.875rem;
}

.comment-separator {
  color: var(--bs-secondary-color);
}

.comment-date {
  color: var(--bs-secondary-color);
  font-size: 0.875rem;
}

.comment-actions {
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
}

.comment-content {
  color: var(--bs-body-color);
  line-height: 1.6;
}

.comment-attachments {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: visible;
}

.attachment-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bs-body-bg);
  border-radius: 0.5rem;
  border: 1px solid var(--bs-border-color);
  overflow: visible;
}

.attachment-thumb {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 0.375rem;
  overflow: hidden;
  background: var(--bs-secondary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.attachment-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.attachment-info {
  flex: 1;
  min-width: 0;
}

.attachment-name {
  font-weight: 500;
  color: var(--bs-body-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.attachment-meta {
  font-size: 0.8125rem;
  color: var(--bs-secondary-color);
}

.attachment-actions {
  flex-shrink: 0;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-left: auto;
}
.attachment-actions .btn-outline-secondary {
  color: var(--bs-secondary-color);
  border-color: var(--bs-border-color);
}
.attachment-actions .btn-outline-secondary:hover {
  color: var(--bs-body-color);
  background: var(--bs-secondary-bg);
}
.attachment-actions .btn-outline-danger {
  color: var(--bs-danger);
  border-color: var(--bs-danger);
}
.attachment-actions .btn-outline-danger:hover {
  color: #fff;
  background: var(--bs-danger);
}

.link-danger {
  color: var(--bs-danger) !important;
  font-size: 12px;
}
.link-danger:hover {
  color: var(--bs-danger-text-emphasis) !important;
}

/*# sourceMappingURL=screen.css-6uRtckw.map */
