@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Pinstripe:ital@0;1&display=swap');

/* Global Styles */
:root {
  --primary-color: #5865f2;
  --primary-dark: #4752c4;
  --secondary-dark: #222767;
  --secondary-color: #181818;
  --text-color: #ffffff;
  --text-color-secondary: #777777;
  --light-text: #b3d4ef;
  --light-bg: #343434;
  --card-bg: #262626;
  --border-color: #1c1c1c;
  --success-color: #27ae60;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
  --info-color: #5865f2;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--light-bg);
  color: var(--text-color);
  line-height: 1.6;
}

content {
  opacity: 0;
}

html {
  scroll-behavior: smooth; /* Ativa scroll suave nativo (fallback) */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

a:hover {
  text-decoration: underline;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.ia {
  background: var(--secondary-color);
  color: #5e5e5e;
  padding: 7px 10px;
  margin-top: 10px;
  border-radius: 7px;
}

.ia b {
  background: #5e5e5e;
  color: var(--secondary-color);
  margin-bottom: 5px;
  margin-top: 10px;
  cursor: default;
  border-radius: 7px;
  padding: 5px 7px;
}

.dashboard-container .title {
  font-family: "Alumni Sans Pinstripe", sans-serif;
  font-weight: 800;
  font-style: normal;
  background: var(--secondary-color);
  padding: 3px 10px;
  font-size: 25px;
  text-transform: uppercase;
  cursor: default;
  color: #FFF;
  margin-bottom: 20px;
  border-radius: 8px;
}

.dashboard-container .title i {
  font-size: 20px;
  margin-right: 5px;
  color: var(--primary-color);
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s, transform 0.1s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  text-decoration: none;
}

.discord {
  display: none;
  position: relative;
  margin-top: 20px;
  padding-left: 40px;
}

.discord:before {
  position: absolute;
  font-family: 'bootstrap-icons';
  top: auto;
  margin-top: 2px;
  display: inline-block;
  /*margin-top: 2px;*/
  font-size: 16px;
  left: 14px;
  content: "\F300";
}

.btn-secondary {
  background-color: var(--primary-color);
  color: white;
  margin-top: -27px;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  box-shadow: var(--primary-color) 0 0 15px;
  text-decoration: none;
}

.version {
  color: #777777;
  text-align: center;
  cursor: default;
  font-size: 12px;
  margin-bottom: 40px;
}

/* Login Page Styles */
.login-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  padding: 30px;
}

.login-header {
  text-align: center;
}

.login-header img {
  width: 250px;
  margin-bottom: 10px;
}

.login-header h1 {
  color: var(--text-color);
  margin-bottom: 8px;
}

.login-header p {
  color: var(--light-text);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
}

.form-group input {
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 16px;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 6px;
}

.login-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
}

/* Dashboard Header */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  /*border-bottom: 1px solid var(--border-color);*/
}

.dashboard-header .logo {
  width: 67px;
}

.dashboard-header .text {
  display: flex;
  align-items: center;
}

.dashboard-header .text img, .dashboard-header .text span {
  margin-right: 10px;
}

.dashboard-header .title-header {
  font-family: "Alumni Sans Pinstripe", sans-serif;
  font-weight: 800;
  font-style: normal;
  background: var(--secondary-color);
  padding: 0 10px;
  font-size: 24px;
  text-transform: uppercase;
  cursor: default;
  color: #FFF;
  border-radius: 8px;
}

.dashboard-header .title-header a {
  transition: all ease 0.5s;
  font-weight: 1200;
}

.dashboard-header .title-header a:hover {
  text-decoration: none;
  color: var(--light-text)
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-menu img {
  width: 30px;
  border-radius: 8px;
}

.logout-btn,
.back-btn {
  color: #FFF;
  background: var(--primary-color);
  padding: 3px 7px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all ease 0.5s;
}

.logout-btn:hover,
.back-btn:hover {
  text-decoration: none;
  background: var(--secondary-color);
}

/* Server List Styles */
.server-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.server-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Adicione esta classe para itens ocultos inicialmente */
.server-card.hidden {
  display: none;
}

.show-more-container {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

#showMoreBtn {
  padding: 10px 20px;
  background-color: var(--primary-color);
  display: none;
  color: white;
  border: none;
  width:100%;
  font-size: 25px;
  text-transform: uppercase;
  font-family: "Alumni Sans Pinstripe", sans-serif;
  font-weight: 800;
  border-radius: 7px;
  cursor: pointer;
}

#showMoreBtn:hover {
  background-color: var(--primary-dark);
}

.server-icon {
  display: flex;
  justify-content: center;
}

.server-icon img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.server-info {
  text-align: center;
}

.server-info h3 {
  margin-bottom: 8px;
  color: var(--text-color);
}

.server-info p {
  color: var(--light-text);
  font-size: 14px;
  margin-bottom: 4px;
}

.server-actions {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}


/* Compact List Styles */
.compact-list {
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.compact-list.read {
  margin-bottom: 20px;
}

.compact-list.wl {
  cursor: default;
}

.list-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 3px 17px;
  background-color: var(--secondary-color);
  color: white;
  font-family: "Alumni Sans Pinstripe", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  font-size: 25px;
  cursor: default;
}

.list-header i {
  color: var(--primary-color);
  font-size: 20px;
}

.list-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
  transition: background-color 0.2s;
}

.list-item:hover {
  background-color: #1f232f;
  text-decoration: none;
}

.list-item:last-child {
  border-bottom: none;
}

.list-item.me {
  background: #1f232f;
}

.list-item.hidden {
  display: none;
}

.tooltip-container-left.hidden {
  display: none;
}

.col-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.id-user {
  background: var(--secondary-color);
  color: var(--light-text);
  padding: 3px 5px;
  border-radius: 7px;
  font-size: 11px;
}

.col-name .wl-id {
  background: var(--primary-color);
  color: #FFF;
  padding: 3px 7px;
  border-radius: 8px;
  font-size: 14px;
}

.col-name img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
}

/* User Profile Styles */
.user-profile {
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 24px;
  margin-bottom: 20px;
}

.profile-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.user-profile.red-alert {
  background-color: #ee4646;
  box-shadow: 0 0 2px #ee4646;
  animation: redAlert 1s linear infinite;
}

.user-profile.red-alert .profile-header {
  border-bottom: soli 1px #fcf6f6;
}

@keyframes redAlert {
  0% {
    box-shadow: 0 0 2px #ee4646;
  }
  80% {
    box-shadow: 0 0 20px #ee4646;
  }
  90% {
  }
  100% {
  }
}

.profile-details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  flex-grow: 1; /* Ocupa o espaço restante */
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.label {
  font-weight: 600;
  font-size: 14px;
  color: var(--light-text);
}

.value {
  font-size: 16px;
}

.blacklist {
  list-style-position: inside;
  /*padding-left: 8px;*/
}

.profile-content {
  display: flex; /* Coloca imagem e detalhes lado a lado */
  gap: 24px; /* Espaço entre a imagem e os detalhes */
  align-items: flex-start; /* Alinha no topo */
}

.profile-image {
  width: 120px; /* Tamanho quadrado */
  height: 120px;
  flex-shrink: 0; /* Impede que a imagem diminua */
  border-radius: 8px;
  overflow: hidden; /* Garante que a imagem não ultrapasse os limites */
  background-color: var(--border-color); /* Cor de fundo caso a imagem não carregue */
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Faz a imagem preencher o espaço mantendo proporções */
}

@media (max-width: 768px) {
  .profile-content {
    flex-direction: column;
    align-items: center;
  }

  .profile-image {
    margin-bottom: 16px;
  }
}

/* Q&A Section Styles */
.qa-section {
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 24px;
  margin-bottom: 24px;
}

.qa-section h2 {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.qa-item {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.qa-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.question h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.answer p {
  font-size: 15px;
  line-height: 1.6;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px
}

.action-buttons.text {
  padding-top: 20px;
}

.action-buttons input[type=text] {
  background: var(--card-bg);
  border: var(--border-color) 1px solid;
  color: var(--light-text);
  border-radius: 8px;
  padding: 4px 7px;
  min-width: 500px;
}

.action-buttons .reprove-reason,.action-buttons .ban-reason {
  display: none;
}

.action-buttons .check {
  color: var(--text-color-secondary);
  font-size: 13px;
  cursor: default;
}

.action-buttons input[type=text]:focus {
  outline: none;
}

.btn-approve {
  background-color: var(--success-color);
  color: white;
  position: relative;
  padding-left: 46px;
}

.btn-approve:before {
  position: absolute;
  font-family: 'bootstrap-icons';
  top: auto;
  margin-top: -3px;
  display: inline-block;
  /*margin-top: 2px;*/
  font-size: 20px;
  left: 14px;
  content: "\F270";
}

.btn-reject {
  background-color: var(--danger-color);
  color: white;
  position: relative;
  padding-left: 46px;
}

.btn-reject:before {
  position: absolute;
  font-family: 'bootstrap-icons';
  top: auto;
  margin-top: -3px;
  display: inline-block;
  /*margin-top: 2px;*/
  font-size: 20px;
  left: 14px;
  content: "\F323";
}

.btn-interview {
  background-color: var(--info-color);
  color: white;
  position: relative;
  padding-left: 46px;
}

.btn-interview:before {
  position: absolute;
  font-family: 'bootstrap-icons';
  top: auto;
  margin-top: -3px;
  display: inline-block;
  /*margin-top: 2px;*/
  font-size: 20px;
  left: 14px;
  content: "\F490";
}

.btn-ban {
  background-color: #000000;
  color: white;
  position: relative;
  padding-left: 46px;
}

.btn-ban:before {
  position: absolute;
  font-family: 'bootstrap-icons';
  top: auto;
  margin-top: -3px;
  display: inline-block;
  /*margin-top: 2px;*/
  font-size: 20px;
  left: 14px;
  content: "\F6B6";
}

.btn-cancel {
  background-color: var(--light-text);
  color: #1c1c1c;
  position: relative;
  padding-left: 46px;
}

.btn-cancel:before {
  position: absolute;
  font-family: 'bootstrap-icons';
  top: auto;
  margin-top: -3px;
  display: inline-block;
  /*margin-top: 2px;*/
  font-size: 20px;
  left: 14px;
  content: "\F623";
}

.welcome .user {
  font-weight: bold;
  color: #8288cc;
}

.status.leitura {
  background: #b0560f;
  border: 1px solid #bb652f;
  color: #d09676;
  padding: 3px 7px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
}

.status.aguardando {
  background: #7e7e7e;
  border: 1px solid #bebebe;
  color: #1c1c1c;
  padding: 3px 7px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .profile-details {
    grid-template-columns: 1fr;
  }

  .action-buttons {
    flex-direction: column;
  }

  .action-buttons .btn {
    width: 100%;
  }

  .list-header,
  .list-item {
    grid-template-columns: 4fr 1fr;
  }

  .col-role {
    display: none;
  }

  .action-buttons input[type=text] {
    padding: 10px 20px;
    min-width: auto;
  }

  .rate {
    opacity: 0.4;
  }
}

@media (max-width: 480px) {
  .dashboard-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .user-menu {
    width: 100%;
    justify-content: space-between;
  }

  .action-buttons input[type=text] {
    padding: 10px 20px;
    min-width: auto;
  }

  .rate {
    opacity: 0.4;
  }
}

/* NOTIFY */
/* Container principal */
#notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10000;
}

/* Estilo individual de cada notificação */
.notification {
  position: relative;
  min-width: 250px;
  padding: 15px;
  border-radius: 5px;
  background: #2c3e50;
  color: white;
  cursor: default;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transform: translateX(100%);
  opacity: 0;
  animation: slideIn 0.5s forwards, fadeOut 0.5s forwards var(--delay-animacao, 7s);
  max-width: 550px;
}

.notification a {
    color: #FFF;
    text-decoration: underline;
    font-weight: bold;
}

/* Tipos de notificação */
.notification.success {
  background: var(--success-color);
}

.notification.error {
  background: var(--danger-color);
}

.notification.warning {
  background: var(--warning-color);
}

.notification.info {
  background: var(--info-color);
}

/* Animação de entrada */
@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Animação de saída */
@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: #7e7e7e;
  color:#1c1c1c;
  /* Outros estilos desejados */
}

.reload {
  cursor: pointer;
  font-size: 15px;
  margin: 20px auto;
  transition: all ease 0.5s;
  color: #FFF;
  margin: auto auto;
  background: var(--secondary-color);
  padding: 6px 9px 3px 9px;
  border-radius: 8px;
}

.reload:hover {
  background: var(--primary-color);
}

.load {
  cursor: not-allowed;
  background: var(--primary-color);
  opacity: 0.3;
  animation: load 1s linear infinite;
}

.load:hover {
  background: var(--primary-color);
  animation: load 1s linear infinite;
}

@keyframes load {
  0% {
  }
  80% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.7; /* Efeito de "desaceleração" opcional */
  }
  100% {
    opacity: 0.3;
  }
}

.loading {
  width: 40px;
  height: 40px;
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  border-top-color: #FFF; /* Cor do spinner */
  animation: spin 1.5s ease infinite;
  box-shadow: var(--primary-color) 0 0 15px;

  /* Centraliza na página inteira */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.loading-overlay {
  /* Cobre toda a tela */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* Efeito de desfoque + overlay escuro */
  backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, 0.5); /* Cor de fundo escura semi-transparente */

  /* Centraliza o loading */
  display: flex;
  justify-content: center;
  align-items: center;

  /* Garante que fique acima de outros elementos */
  z-index: 9999; /* Ajuste conforme necessário */
  transition: opacity 0.5s ease-out;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.infos {
  margin-bottom: 20px;
}

.infos .item {
  background: var(--primary-color);
  color: #FFF;
  cursor: default;
  border-radius: 8px;
  padding: 3px 7px;
}

.infos .item.dark {
  background: var(--secondary-color);
  color: #FFF;
  cursor: default;
  border-radius: 8px;
  padding: 3px 7px;
}

.pre-item .item {
  background: var(--primary-color);
  color: #FFF;
  cursor: default;
  border-radius: 8px;
  padding: 3px 7px;
}

.infos .bi {
  margin-right: 3px;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.no-margin-top {
  margin-top: -20px;
}

.zero-margin-top {
  margin-top: 0;
}

.item-action {
  background: var(--primary-color);
  border-radius: 8px;
  color: #FFF;
  padding: 1px 5px;
  margin-left: 3px;
  font-weight: bold;
  transition: all ease 0.6s;
}

.item-action:hover {
  background: var(--secondary-dark);

}

.item-action.disabled {
  background: var(--secondary-color);
  color: #FFF;
  cursor: default;
}

.item-action.disabled:hover {
  background: var(--secondary-color);

}

.blacklist li {
  background: #fff;
  color: #ee4646;
  padding: 3px 5px;
  margin-top: 4px;
  border-radius: 8px;
  cursor: default;
  text-align: center;
  display: inline;
  margin-right: 5px;
}

.blacklist ul {
  list-style-type: none;
  margin-left: -3px;
  display: flex;          /* Ativa Flexbox */
  list-style-type: none;
  gap: 5px;             /* Espaçamento entre itens (substitui margin-right) */
  padding-left: 0;
}

.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: #fff;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  z-index: 100;
}

.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: var(--secondary-color) transparent transparent transparent;
}

.tooltip-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* TOOLTIP ALT */
.tooltip-container-alt {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-alt {
  position: absolute;
  bottom: -7px;
  left: 85px;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #fff;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  margin-bottom: 7px;
  z-index: 100;
}

.tooltip-container-alt:hover .tooltip-alt {
  visibility: visible;
  opacity: 1;
}

/* FODACE */
.tooltip-container-left {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-left {
  position: absolute;
  bottom: 100%;
  left: -2px;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: #fff;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  z-index: 100;
}

.tooltip-left::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 87px;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: var(--secondary-color) transparent transparent transparent;
}

.tooltip-container-left:hover .tooltip-left {
  visibility: visible;
  opacity: 1;
}

.rate {
  background: var(--primary-color);
  padding: 10px;
  position: fixed;
  z-index: 999;
  color: #FFF;
  bottom: 10px;
  right: 10px;
  width: 50px;
  border: 0;
  text-align: center;
  border-radius: 100%;
  cursor: pointer;
  transition: all ease 0.5s;
}

.rate:hover {
  opacity: 1;
  background: var(--secondary-dark)
}

.session-info {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 12px;
  color: #7e7e7e;
  cursor: default;
}

/* NOTIFICATION ALERT */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.notification-container-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}

.notification-alert {
  background-color: var(--secondary-color);
  border-left: 4px solid #6c757d;
  padding: 15px;
  margin-bottom: 1px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  cursor:default;
}

.notification-alert.high-priority {
  border-left-color: #dc3545;
  background-color: #7a2626;
}

.notification-alert.medium-priority {
  border-left-color: #ffc107;
  background: #8a5c1f;
}

.notification-alert.low-priority {
  background: var(--secondary-dark);
  border-left-color: var(--primary-color);
}

.notification-alert-content {
  flex-grow: 1;
}

.notification-alert-title {
  font-weight: bold;
  margin-bottom: 5px;
}

.notification-alert-message {
  font-size: 0.9em;
}

.notification-alert-actions {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.notification-alert-toggle {
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 10px;
  font-size: 1.2em;
  color: #6c757d;
  transition: transform 0.3s ease;
}

.notification-alert-toggle:hover {
  color: #495057;
}

.notification-alert-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  color: #FFF;
}

.notification-alert-close:hover {
  opacity: 0.5;
}

.notification-alert-expand-container {
  background: var(--secondary-color)
}

.collapsed-notifications-alert {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: var(--secondary-color);
}

.collapsed-notifications-alert.expanded {
  max-height: 500px; /* Ajuste conforme necessário */
}

.expand-icon-alert {
  transform: rotate(0deg);
  color: #fff;
  transition: transform 0.3s ease;
}

.expand-icon-alert:hover {
  color: var(--light-text);
}

.expand-icon-alert.expanded {
  transform: rotate(180deg);
}

/* SEARCH */
.wl-search input {
  background: var(--secondary-color);
  border-radius: 8px;
  font-size: 14px;
  min-width: 200px;
  padding: 3px 7px;
  border: 1px solid var(--secondary-dark);
  color: #FFF;
  outline: none;
  transition: all ease 0.5s;
}

.wl-search input:hover, .wl-search input:focus {
  border: 1px var(--primary-color) solid;
}

.wl-search input:focus {
  color: var(--primary-color);
}

.wl-search button {
  background: var(--primary-color);
  color: #FFF;
  border-radius: 8px;
  outline: none;
  border: 1px var(--secondary-dark) solid;
  padding: 4px 7px;
  cursor: pointer;
  transition: all ease 0.5s;
}

.wl-search button:hover {
  background: var(--secondary-dark)
}

/* SCROLLBAR */
/* width */
::-webkit-scrollbar {
  width: 6px;
  z-index: 999;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--secondary-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius:50px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--light-text);
}