/* -- begin bootstrap tumbler -- */
/* Только для переключателей с .form-switch */
.form-check.form-switch .form-check-input[type="checkbox"] {
  width: 2.4rem;
  height: 1.2rem;
  background-color: #2c2f3c; /* серый по умолчанию */
  border: 1.5px solid #44485c;
  border-radius: 2rem;
  appearance: none;
  position: relative;
  transition: all 0.25s ease;
  box-shadow: inset 0 0 0.2rem rgba(100, 100, 120, 0.35);
  cursor: pointer;
  margin-top: 0.25rem;
}

/* Кнопка-переключатель внутри switch */
.form-check.form-switch .form-check-input[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
  width: 1rem;
  height: 1rem;
  background: radial-gradient(circle at 30% 30%, #cccccc, #999999);
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(130, 130, 130, 0.7);
  transition: transform 0.25s ease, background 0.25s ease;
}

/* Включенное состояние только для переключателя */
.form-check.form-switch .form-check-input[type="checkbox"]:checked {
  background-color: #7b2cbf; /* фиолетовый индиго */
  border-color: #7b2cbf;
  box-shadow: 0 0 0.4rem rgba(123, 44, 191, 0.4), inset 0 0 0.2rem rgba(255, 255, 255, 0.05);
}

/* Смещение капли при активации (только для switch) */
.form-check.form-switch .form-check-input[type="checkbox"]:checked::before {
  transform: translateX(1.2rem);
  background: radial-gradient(circle at 70% 30%, #7b2cbf, #5a1c9e);
  box-shadow: 0 0 6px rgba(123, 44, 191, 0.75);
}

/* Фокус для переключателя */
.form-check.form-switch .form-check-input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0.25rem 0.25rem rgba(123, 44, 191, 0.25);
}

/* Метка переключателя */
.form-check.form-switch .form-check-label {
  margin-left: 0.5rem;
  color: #e2e6f0;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

/* Hover эффект только для переключателя */
.form-check.form-switch:hover .form-check-label {
  color: #ffffff;
}


/* -- end bootstrap tumbler -- */

.modal .modal-header {
    border-bottom: none;
}

.modal .modal-footer {
    border-top: none;
}

.list-group-item {
    background: none !important;
}
ul li a:hover {
    text-decoration: none !important;
}

/* Общий стиль для контейнера загрузчика true-number-random-generator */
.radio-wave-loader {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==== Волны ==== */
.radio-wave-loader .wave {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: waveAnimation 2s infinite ease-out;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5), 0 0 15px rgba(34, 197, 94, 0.3); /* фиолетово-зелёное свечение */
  background: radial-gradient(circle at center,
    rgba(139, 92, 246, 0.25) 30%,
    rgba(34, 197, 94, 0.15) 70%,
    transparent 100%);
  border: 2px solid rgba(139, 92, 246, 0.7);
}

/* Вторая волна — более зелёная */
.radio-wave-loader .wave:nth-child(2) {
  animation-delay: 0.5s;
  border-color: rgba(34, 197, 94, 0.6);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.4), 0 0 15px rgba(139, 92, 246, 0.3);
}

/* === Волна 3: на основе #0d6efd === */
.radio-wave-loader .wave:nth-child(3) {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(13, 110, 253, 0.8); /* #0d6efd base */
  background: radial-gradient(circle,
    rgba(13, 110, 253, 0.35) 40%,
    rgba(13, 110, 253, 0.15) 80%,
    transparent 100%);
  box-shadow:
    0 0 25px rgba(13, 110, 253, 0.7),
    0 0 50px rgba(13, 110, 253, 0.4),
    inset 0 0 10px rgba(13, 110, 253, 0.3);
  animation: waveAnimation 2.5s infinite ease-out;
  animation-delay: 1s;
}

/* ==== Центральная точка ==== */
.radio-wave-loader .center {
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at center,
    white,
    orange,
    yellow);
  border-radius: 50%;
  box-shadow:
    0 0 20px rgba(132, 204, 22, 0.8),
    0 0 40px rgba(139, 92, 246, 0.5),
    inset 0 0 10px rgba(255, 255, 255, 0.2);

  animation: pulseGlow 2.5s ease-in-out infinite, scalePulse 2.5s ease-in-out infinite;
}

/* ==== Анимация ==== */
@keyframes waveAnimation {
  0% {
    transform: scale(0.5);
    opacity: 1;
    filter: hue-rotate(0deg);
  }
  100% {
    transform: scale(3);
    opacity: 0;
    filter: hue-rotate(45deg);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow:
      0 0 20px rgba(132, 204, 22, 0.8),
      0 0 40px rgba(139, 92, 246, 0.5),
      inset 0 0 10px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow:
      0 0 25px rgba(132, 204, 22, 1),
      0 0 55px rgba(139, 92, 246, 0.6),
      inset 0 0 14px rgba(255, 255, 255, 0.3);
  }
}

@keyframes scalePulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.15); }
}

/* === end animate wave === */


#button-addon1-add-1:hover {
    color: var(--bs-primary);
}
/*LOGO*/
a:hover
{
    text-decoration: none;
}

.bi.bi-three-dots-vertical:hover {

}


@font-face {
    font-family: 'Hot Pizza';
    src: url('/static/docapp/fonts/fonts/hot_pizza.woff2') format('woff2'), /* Super Modern Browsers */
         url('/static/docapp/fonts/fonts/hot_pizza.woff') format('woff'), /* Modern Browsers */
         url('/static/docapp/fonts/fonts/hot_pizza.ttf') format('truetype'); /* Safari, Android, iOS */
    font-display: swap;
}


#btn_clear-1, #button_clear, #btn_clear-qr-1, #btn_clear, #button_clear_trb {
    text-decoration: none;
}

nav.breadcrumb-wrapper {
    display: block; /* Контейнер для хлебных крошек */
    width: 100%; /* Занимает всю ширину */
    overflow-x: auto; /* Горизонтальная прокрутка */
    white-space: nowrap; /* Все элементы в одну строку */
}

.breadcrumb {
    display: flex; /* Используем flexbox для горизонтального размещения */
    flex-wrap: nowrap; /* Запрещаем перенос элементов */
    gap: 0.5rem; /* Расстояние между элементами */
    margin: 0 0 5px 10px; /* Убираем лишние отступы */
    padding: 0; /* Убираем лишние отступы */
    list-style: none; /* Убираем маркеры списка */
}

.breadcrumb-item {
    display: inline; /* Каждый элемент остается строчным */
}

.breadcrumb-item a {
    text-decoration: none; /* Убираем подчеркивание */
}

.breadcrumb-item.active {
    color: #6c757d; /* Цвет для активного элемента */
}

#cont_output {
    -webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
}

.card
{
    /*border-radius: 0;

    -webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);*/
}

.nav-link strong {
    color: #9A9A9A;
}


.dropdown-menu[data-bs-popper] {
    left: -120px;
}


#header_id .navbar
{
    /*background-color: #2C1A4D;*/
}

#header_id .navbar-brand
{
    /*color: #fff;*/
}

#offcanvasScrollingLabel a
{
    /*color: #2C1A4D;*/
}
/**************************************/

section .container-xxl .row .col #accordionExample .accordion-body ul li
{
    margin: 5px 0 5px 0;
}

section .container-xxl .row .col #accordionExample .accordion-body ul li a
{
    text-decoration: none;
    color: #212529;
}

section .container-xxl .row .col #accordionExample .accordion-body ul li a:hover
{
    text-decoration: underline;
}

.form-input
{
    /*background-color: darkblue;*/
}

#wrapper_main_menu_content a,
a
{
    text-decoration: none;
    /*color: #343A40;*/
}

#wrapper_main_menu_content a:hover,
a:hover
{
    text-decoration: underline;
}

.main_menu_class
{
    text-decoration: none;
    color: white;
}

.main_menu_class:hover
{
    /*text-decoration: underline;*/
    color: #ADB5BD;
}

.oglavlrnie1 ul li
{

}

.oglavlrnie1 ul li {
    /*list-style: none;*/
}

.oglavlrnie1 a
{
    text-decoration: none;
    color: #6c757d; /*#343A40;*/
}

.thover1 a:hover,
.oglavlrnie1 a:hover
{
    text-decoration: underline;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

#pass_gen_style_1 {
    font-size: 20px;
    font-weight: bold;
    color: #0A58CA;
    font-family: 'Times new roman', sans-serif;

    resize: none;
    border: #fff;
    /*background-color: #fff;*/
}

#saveModal #output_cont_fileName a{
    color: #0D6EFD;
}

.thover1 a strong{
    color: #6469BF;
}

/***************** css new ******************/
.logo_fi {
    /*border: 3px solid #B6D4FE; !*#F7D6E6;*!  !*#2F88FF;*! !* #0d6efd *!*/
    padding: 2px;
    border-radius: 21%;
    margin-top: -3px;
}

.btn {
    /*border-radius: 0px;*/
}

.bi-three-dots-vertical {
    /*color: #FF9900;*/
}

.color-Shade-of-orange {
    background-color: #FF9900;
}
/****************************** Light/Dark *************************************/
      .bd-placeholder-img {
        font-size: 1.125rem;
        text-anchor: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
      }

      @media (min-width: 768px) {
        .bd-placeholder-img-lg {
          font-size: 3.5rem;
        }
      }

      .b-example-divider {
        width: 100%;
        height: 3rem;
        background-color: rgba(0, 0, 0, .1);
        border: solid rgba(0, 0, 0, .15);
        border-width: 1px 0;
        box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
      }

      .b-example-vr {
        flex-shrink: 0;
        width: 1.5rem;
        height: 100vh;
      }

      .bi {
        vertical-align: -.125em;
        fill: currentColor;
      }

      .nav-scroller {
        position: relative;
        z-index: 2;
        height: 2.75rem;
        overflow-y: hidden;
      }

      .nav-scroller .nav {
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        margin-top: -1px;
        overflow-x: auto;
        text-align: center;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
      }

      .btn-bd-primary {
        --bd-violet-bg: rgba(165, 49, 220, 0);
        --bd-violet-rgb: 112.520718, 44.062154, 249.437846;

        --bs-btn-font-weight: 600;
        --bs-btn-color: var(--bs-white);
        --bs-btn-bg: var(--bd-violet-bg);
        --bs-btn-border-color: var(--bd-violet-bg);
        --bs-btn-hover-color: var(--bs-white);
        --bs-btn-hover-bg: rgba(101, 40, 224, 0.2); /*#6528e0;*/
        --bs-btn-hover-border-color: rgba(101, 40, 224, 0.2); /*#6528e0;*/
        --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
        --bs-btn-active-color: var(--bs-btn-hover-color);
        --bs-btn-active-bg: rgba(101, 40, 224, 0.2);    /*#5a23c8;*/
        --bs-btn-active-border-color: rgba(101, 40, 224, 0.2);  /*#5a23c8;*/
      }
      .bd-mode-toggle {
        z-index: 1500;
      }
/*******************************************************************/
	#cookie_notification{display: none; position: relative;}
	#cookie_notification.show{display: block; }
	#cookie_notification .alert{position: fixed; left: 10vw; right: 10vw; padding: 10px 10px 0 10px; z-index: 100; opacity: 0.8; background-color: #6469BF; color: white;}
/*******************************************************************/
    #cont_output {
      /*display: grid;*/
      /*grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));*/
      /*grid-auto-flow: row;*/
    }
/* ************************* ***** ********************************* */
/* ===========================================
   Custom Full Bootstrap 5.3 Theme — Black Base
   Futuristic Indigo-Violet Blobs + Animated UI
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700&display=swap');

/* === Body Background with Moving Blobs === */
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #e4e4e4;
  /*font-family: 'Orbitron', sans-serif;*/
}

/* ======= Анимированные пятна ======= */
/*body::before,*/
/*body::after,*/
/*body::marker {*/
/*  content: '';*/
/*  position: absolute;*/
/*  border-radius: 50%;*/
/*  filter: blur(120px);*/
/*  opacity: 0.6;*/
/*  animation: morph 20s infinite ease-in-out;*/
/*  z-index: 0;*/
/*}*/

/*body::before {*/
/*  width: 600px;*/
/*  height: 600px;*/
/*  top: -200px;*/
/*  left: -200px;*/
/*  background: radial-gradient(circle, #7928CA, #2E2A8B);*/
/*  animation-delay: 0s;*/
/*}*/

/*body::after {*/
/*  width: 500px;*/
/*  height: 500px;*/
/*  bottom: -100px;*/
/*  right: -150px;*/
/*  background: radial-gradient(circle, #6C4BC1, #1F114E);*/
/*  animation-delay: 10s;*/
/*}*/

/*body::marker {*/
/*  width: 400px;*/
/*  height: 400px;*/
/*  top: 60%;*/
/*  left: -100px;*/
/*  background: radial-gradient(circle, #8A2BE2, #2d1b78);*/
/*  animation-delay: 5s;*/
/*}*/

/*@keyframes morph {*/
/*  0%   { transform: scale(1) translate(0, 0) rotate(0deg); }*/
/*  50%  { transform: scale(1.1) translate(20px, -10px) rotate(45deg); }*/
/*  100% { transform: scale(1) translate(0, 0) rotate(0deg); }*/
/*}*/

/* ====== Цвета Bootstrap (переопределение) ====== */
:root {
  --bs-primary: #8b5cf6;
  --bs-secondary: #6b7280;
  --bs-success: #22c55e;
  --bs-danger: #ef4444;
  --bs-warning: #f59e0b;
  --bs-info: #38bdf8;
  --bs-light: #d1d5db;
  --bs-dark: #111827;
}

/* ====== Кнопки ====== */
.btn {
  /*font-weight: 600;*/
  border-radius: 7px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}


/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  /*font-weight: 700;*/
  /*letter-spacing: 1px;*/
}

/* === Links === */
a {
  color: #b084ff;
  /*text-decoration: none;*/
}
a:hover {
  color: #d5c4ff;
  text-decoration: underline;
}

/* === Buttons === */
.btn {
  border-radius: 7px;
  font-weight: 500;
  /*letter-spacing: 0.8px;*/
  transition: all 0.3s ease;
}

/* ============================
   Solid Buttons: .btn-*
   ============================ */

.btn-primary {
  background-color: #6e42ff;
  border-color: #6e42ff;
  color: #fff;
  box-shadow: 0 0 12px rgba(110, 66, 255, 0.4);
}
.btn-primary:hover {
  background-color: #8457ff;
  border-color: #8457ff;
  box-shadow: 0 0 18px rgba(132, 87, 255, 0.6);
}

.btn-secondary {
  background-color: #3f3f46;
  border-color: #575760;
  color: #ddd;
  box-shadow: 0 0 10px rgba(99, 99, 110, 0.3);
}
.btn-secondary:hover {
  background-color: #575760;
  border-color: #73737d;
  color: #fff;
  box-shadow: 0 0 15px rgba(130, 130, 140, 0.4);
}

.btn-success {
  background-color: #22c55e;
  border-color: #22c55e;
  color: #fff;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.35);
}
.btn-success:hover {
  background-color: #16a34a;
  border-color: #16a34a;
  box-shadow: 0 0 15px rgba(22, 163, 74, 0.5);
}

.btn-danger {
  background-color: #ef4444;
  border-color: #ef4444;
  color: #fff;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.35);
}
.btn-danger:hover {
  background-color: #dc2626;
  border-color: #dc2626;
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
}

.btn-warning {
  background-color: #f59e0b;
  border-color: #f59e0b;
  color: #000;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}
.btn-warning:hover {
  background-color: #d97706;
  border-color: #d97706;
  box-shadow: 0 0 15px rgba(217, 119, 6, 0.5);
}

.btn-info {
  background-color: #38bdf8;
  border-color: #38bdf8;
  color: #fff;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.35);
}
.btn-info:hover {
  background-color: #0ea5e9;
  border-color: #0ea5e9;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.5);
}

.btn-light {
  background-color: #d1d5db;
  border-color: #d1d5db;
  color: #000;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}
.btn-light:hover {
  background-color: #e5e7eb;
  border-color: #e5e7eb;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.btn-dark {
  background-color: #111827;
  border-color: #111827;
  color: #e4e4e4;
  box-shadow: 0 0 8px rgba(17, 24, 39, 0.3);
}
.btn-dark:hover {
  background-color: #1f2937;
  border-color: #1f2937;
  box-shadow: 0 0 12px rgba(31, 41, 55, 0.4);
}

.btn-link {
  color: #8b5cf6;
  text-decoration: underline;
}
.btn-link:hover {
  color: #c084fc;
}

/* ============================
   Outline Buttons: .btn-outline-*
   ============================ */

.btn-outline-primary {
  color: #b084ff;
  border-color: #6e42ff;
}
.btn-outline-primary:hover {
  background-color: #6e42ff;
  color: #fff;
  box-shadow: 0 0 10px rgba(110, 66, 255, 0.5);
}

.btn-outline-secondary {
  color: #ccc;
  border-color: #4b4b50;
}
.btn-outline-secondary:hover {
  background-color: #4b4b50;
  color: #fff;
  box-shadow: 0 0 10px rgba(100, 100, 110, 0.4);
}

.btn-outline-success {
  color: #22c55e;
  border-color: #22c55e;
}
.btn-outline-success:hover {
  background-color: #22c55e;
  color: #fff;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

.btn-outline-danger {
  color: #ef4444;
  border-color: #ef4444;
}
.btn-outline-danger:hover {
  background-color: #ef4444;
  color: #fff;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

.btn-outline-warning {
  color: #f59e0b;
  border-color: #f59e0b;
}
.btn-outline-warning:hover {
  background-color: #f59e0b;
  color: #000;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.btn-outline-info {
  color: #38bdf8;
  border-color: #38bdf8;
}
.btn-outline-info:hover {
  background-color: #38bdf8;
  color: #fff;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.btn-outline-light {
  color: #fff;
  border-color: #d1d5db;
}
.btn-outline-light:hover {
  background-color: #d1d5db;
  color: #000;
  box-shadow: 0 0 10px rgba(209, 213, 219, 0.4);
}

.btn-outline-dark {
  color: #e4e4e4;
  border-color: #111827;
}
.btn-outline-dark:hover {
  background-color: #111827;
  color: #fff;
  box-shadow: 0 0 10px rgba(17, 24, 39, 0.4);
}


/* === Accordion === */
.accordion-item {
  background-color: #0e0e0e;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
}
.accordion-button {
  background-color: #1c1c2e;
  color: #ffffff;
  font-weight: 600;
  border-radius: 10px 10px 0 0;
}
.accordion-button:not(.collapsed) {
  background-color: #3c2d70;
  color: #fff;
}
.accordion-body {
  background-color: #191622;
  color: #ccc;
}

/* === Cards === */
.card {
  background-color: #101010;
  border: 1px solid #2a2a2a;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(108, 85, 230, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-1:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(108, 85, 230, 0.25);
}

/* === Navbar === */
.navbar {
  /*background-color: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid #2a2a2a;*/
}
.navbar-brand, .nav-link {
  color: #e0e0e0 !important;
  transition: color 0.3s;
}
.navbar-nav .nav-link:hover {
  color: #b084ff !important;
}

/* === Dropdown === */
.dropdown-menu {
  background-color: #191622;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
}
.dropdown-item {
  color: #e0e0e0;
}
.dropdown-item:hover {
  background-color: #3c2d70;
  color: #fff;
}

/* === Forms === */
.form-control {
  background-color: #1a1a1a;
  border: 1px solid #3a3a3a;
  color: #e0e0e0;
  border-radius: 8px;
}
.form-control:focus {
  background-color: #232323;
  border-color: #8457ff;
  box-shadow: 0 0 0 0.2rem rgba(134, 101, 255, 0.3);
  color: #fff;
}

/* === Modal === */
.modal-content {
  background-color: #111;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  color: #e0e0e0;
}

/* === Progress === */
.progress {
  background-color: #1c1c1c;
  border-radius: 12px;
}
.progress-bar {
  background-color: #8457ff;
}

/* === Alerts === */
.alert {
  border-radius: 10px;
  border: 1px solid #2c2c2c;
  color: #fff;
  background-color: #1a1a1a;
}
.alert-primary {
  background-color: #2e1e50;
  border-color: #8457ff;
}

/* === Tables === */
.table {
  color: #e0e0e0;
  /*background-color: transparent;*/
}
.table-dark {
  background-color: #111;
}
.table th,
.table td {
  border-color: #333;
}

/* === Tooltips === */
.tooltip-inner {
  background-color: #555;
  color: #fff;
  font-size: 0.85rem;
  border-radius: 4px;
}

/* === Popovers === */
.popover {
  background-color: #1a1a1a;
  border: 1px solid #2d2d2d;
  color: #eee;
}

/* === Toasts === */
.toast {
  background-color: #141414;
  border-radius: 8px;
  color: #eee;
  border: 1px solid #333;
}

/* === Pagination === */
.page-link {
  background-color: #0f0f0f;
  border-color: #2d2d2d;
  color: #bbb;
}
.page-link:hover {
  background-color: #2e2e2e;
  color: #fff;
}

/* === Scrollbar === */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: #5d44c9;
  border-radius: 5px;
}
::-webkit-scrollbar-track {
  background-color: #111;
}
