@charset "UTF-8";
.nav-toggle {
  display: none;
}

.burger-menu {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.burger-menu span {
  display: block;
  width: 30px;
  height: 3px;
  background: #dcddde;
  border-radius: 2px;
  transition: 0.3s;
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 260px;
  height: 100vh;
  background: #202225;
  transition: left 0.3s ease-in-out;
  z-index: 999;
  padding-top: 60px;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
  overflow-y: scroll;
  scrollbar-width: none;
}
.sidebar .sidebar-header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #2f3136;
}
.sidebar .sidebar-header .avatar {
  width: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.sidebar .sidebar-header .username {
  display: block;
  font-weight: bold;
}
.sidebar .sidebar-links {
  padding: 10px;
}
.sidebar .sidebar-links .nav-item {
  display: flex;
  align-items: center;
  padding: 15px;
  color: #dcddde;
  text-decoration: none;
  border-radius: 5px;
  margin-bottom: 5px;
  transition: background 0.2s;
}
.sidebar .sidebar-links .nav-item:hover {
  background: #2f3136;
  color: #fff;
}
.sidebar .sidebar-links .nav-item.logout {
  color: #ed4245;
  margin-top: 20px;
}

.nav-sub {
  list-style: none;
  padding: 0;
}
.nav-sub li {
  margin: 5px 0;
}
.nav-sub li a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  color: #b9bbbe;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.nav-sub li a i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}
.nav-sub li a:hover {
  background: rgba(79, 84, 92, 0.32);
  color: #dcddde;
}
.nav-sub li a.active {
  background: #4752c4;
  color: #ffffff;
  font-weight: 500;
}
.nav-sub li a.active:hover {
  background: #3c45a5;
}

.icon-sidebar {
  height: 32px;
  width: 32px;
  margin-right: 10px;
}

.icon-h1 {
  height: 64px;
  width: 64px;
}

.module-badge {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
}

/* Bleu pour le Ping */
.module-badge.ping {
  background-color: #5865f2;
}

/* Rouge pour les Gros Mots */
.module-badge.badWords {
  background-color: #ed4245;
}

.module-badge.emoji {
  background-color: #ad9402;
}

/* Vert pour les Liens (si tu l'ajoutes plus tard) */
.module-badge.link {
  background-color: #03aab6;
}

.module-badge.upperCase {
  background-color: #025a15;
}

.module-badge.markdown {
  background-color: #91077e;
}

.module-badge.spam {
  background-color: #911707;
}

.module-badge.fileFilter {
  background-color: #ff7300;
}

.main-content {
  margin-left: 260px;
  padding: 80px 20px 20px 20px;
  transition: margin-left 0.3s ease-in-out;
}

.body-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

.main-wrapper {
  flex: 1;
}

.nav-toggle:checked ~ .sidebar {
  left: 0;
}
.nav-toggle:checked ~ .main-content {
  margin-left: 260px;
}
.nav-toggle:checked ~ .burger-menu span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle:checked ~ .burger-menu span:nth-child(2) {
  opacity: 0;
}
.nav-toggle:checked ~ .burger-menu span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body {
  background-color: #36393f;
  color: #dcddde;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.all-card {
  display: flex;
  flex-direction: column;
}
.all-card .card a {
  color: #00a8fc;
  text-decoration: none;
  cursor: pointer;
}
.all-card .card a:hover {
  text-decoration: underline;
}

.card {
  background: #2f3136;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  margin: 1% 10%;
}
.card h2 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #fff;
  border-bottom: 1px solid #202225;
  padding-bottom: 10px;
}

.resLang {
  margin: 2% 0;
}

.card-server {
  width: 100%;
  align-items: center;
}

.stat-card {
  background: #2f3136;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.dynamic-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  background: #202225;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
}
.dynamic-row .li-config-container {
  display: flex;
  flex: 1;
  gap: 12px;
}
.dynamic-row .li-config-container .li-config {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 5px;
}
.dynamic-row .li-config-container .li-config label {
  font-size: 0.75rem;
  color: #72767d;
  text-transform: uppercase;
  font-weight: bold;
}
.dynamic-row .li-config-container .li-config .input-config {
  width: 100%;
  background-color: #2f3136;
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 10px;
  color: white;
  border-radius: 3px;
  font-size: 0.9rem;
}
.dynamic-row .li-config-container .li-config .input-config:focus {
  border-color: #00a8fc;
}
.dynamic-row .btn-delete {
  background-color: #ed4245;
  color: white;
  border: none;
  border-radius: 4px;
  height: 38px;
  padding: 0 12px;
  margin: 0 !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.dynamic-row .btn-delete:hover {
  background-color: rgb(230.0869565217, 21.9130434783, 25.5652173913);
}

.btn-delete {
  background-color: #ed4245;
  color: white;
  border: none;
  border-radius: 4px;
  height: 38px;
  padding: 0 12px;
  margin: 0 !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.btn-delete:hover {
  background-color: rgb(230.0869565217, 21.9130434783, 25.5652173913);
}

.li-config {
  padding: 2px;
}

.discord-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  margin-left: 10px;
}

.discord-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #36393f;
  transition: 0.4s;
  border-radius: 22px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #5865f2;
}

input:focus + .slider {
  box-shadow: 0 0 1px #5865f2;
}

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

.custom-select {
  position: relative;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.custom-select-header {
  background: #1e1f22;
  border: 1px solid #2b2d31;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  color: #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
}

.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #2b2d31;
  border: 1px solid #1e1f22;
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.custom-select-options.open {
  display: block;
}

.role-option {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border-bottom: 1px solid #1e1f22;
  margin: 0;
}

.role-option:hover {
  background: #383a40;
}

.role-color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.role-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.05);
}

/* 1. On cache complètement la vraie checkbox */
.role-option input[type=checkbox] {
  display: none;
}

/* 2. On prépare notre encoche sur mesure (invisible par défaut) */
.check-icon {
  opacity: 0;
  color: #fff;
  margin-left: auto; /* Pousse l'encoche tout à droite du menu */
  font-weight: bold;
  transition: opacity 0.2s;
}

/* 3. LA MAGIE : Si la checkbox cachée est cochée, on rend l'encoche visible ! */
.role-option input[type=checkbox]:checked ~ .check-icon {
  opacity: 1;
}

.help-tooltip {
  position: relative;
  cursor: help;
  display: inline-block;
}
.help-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background-color: #202225;
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 0.75rem;
  white-space: nowrap;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid #2f3136;
  transition: transform 0.1s ease-in-out;
  pointer-events: none;
}
.help-tooltip::before {
  content: "";
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%) scale(0);
  border-width: 6px;
  border-style: solid;
  border-color: #202225 transparent transparent transparent;
  transition: transform 0.1s ease-in-out;
}
.help-tooltip:hover::after, .help-tooltip:hover::before {
  transform: translateX(-50%) scale(1);
}

.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 0.85rem;
  color: #72767d;
  text-transform: uppercase;
  padding: 1% 0;
}
.form-group input[type=text],
.form-group input[type=password] {
  width: 100%;
  padding: 10px;
  background: #202225;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  color: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.form-group input[type=text]:focus,
.form-group input[type=password]:focus {
  outline: none;
  border-color: #5865f2;
}

.input-config {
  background-color: #202225;
  color: #dcddde;
  border: none;
  border-radius: 3px;
  padding: 10px;
  font-size: 16px;
  transition: border 0.2s ease;
  outline: none;
}

.textarea-embedDesc {
  width: 450px;
  height: 200px;
}

.btn {
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}
.btn-primary {
  background: #5865f2;
  color: white;
}
.btn-primary:hover {
  background: #4752c4;
}
.btn-success {
  background: #3ba55c;
  color: white;
}

#btn-global-connect {
  background-color: #5865f2;
  color: #dcddde;
  margin-top: 10px;
  margin-bottom: 10px;
}
#btn-global-connect:hover {
  background-color: #4752c4;
}

.btn-load-lists {
  background-color: #5865f2;
  color: #dcddde;
  margin-top: 10px;
  margin-bottom: 10px;
}
.btn-load-lists:hover {
  background-color: #4752c4;
}

.btn-add {
  background-color: #5865f2;
  color: #dcddde;
  box-shadow: none;
  border-style: none;
  border-radius: 10px;
  padding: 0.5rem;
  margin: 2% 10%;
}
.btn-add:hover {
  background-color: #4752c4;
}

.clr-field button {
  border-radius: 0 20px 20px 0;
  pointer-events: auto !important;
  cursor: pointer;
}

.btn-save {
  background-color: #5865f2;
  color: #dcddde;
}
.btn-save:hover {
  background-color: #3ba55c;
}

.switch {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.switch input {
  display: none;
}
.switch .slider {
  display: block;
  flex-shrink: 0;
  width: 40px;
  height: 20px;
  margin: 1% 0;
  background-color: #72767d;
  border-radius: 20px;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}
.switch .slider::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 2px;
  top: 2px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}
.switch input:checked + .slider {
  background: #3ba55c;
}
.switch input:checked + .slider:before {
  transform: translateX(20px);
}

canvas {
  max-width: 100%;
  margin-top: 20px;
  background: #202225;
  border-radius: 4px;
  padding: 10px;
}

/* 1. On cache l'input natif sans le supprimer de l'accessibilité */
.hidden-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* 2. Style par défaut du bouton (non sélectionné) */
.custom-label {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; /* Évite de sélectionner le texte au clic */
}

/* 3. Style quand la case est cochée */
.hidden-checkbox:checked + .custom-label {
  border-color: #3498db;
  background-color: #ebf5fb;
  color: #3498db;
  font-weight: bold;
}

/* Optionnel : Effet au survol */
.custom-label:hover {
  background-color: #f9f9f9;
}

.ticket-appearance {
  display: flex;
  align-items: flex-start;
}

.ticket_appearance-config {
  flex: 1;
  width: 100%;
  padding: 20px;
  background-color: #2f3136;
}

#staff-roles-select {
  display: none;
}

.choices__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #1e1f22 !important;
  padding: 4px !important;
  min-height: 44px !important;
  border: none !important;
}

.role-tag {
  width: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  margin: 2px !important;
  padding: 2px 8px !important;
  background: rgba(0, 0, 0, 0.3) !important;
  border-radius: 3px !important;
  z-index: 5;
}
.role-tag .choices__button {
  margin-left: 5px !important;
  border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-left: 5px !important;
  opacity: 0.7;
  cursor: pointer;
}
.role-tag .choices__button:hover {
  opacity: 1;
}

/* L'input de recherche doit se réduire pour ne pas tout recouvrir */
.choices__input {
  width: auto !important;
  min-width: 100px;
  background: transparent !important;
  border: none !important;
  color: white !important;
  margin: 0 !important;
  padding: 4px !important;
  flex-grow: 1;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
  background-color: #202225 !important;
  color: white !important;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #2f3136 !important;
}

.preview-container {
  flex: 1;
  padding: 20px;
}

.item-align {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px;
}

.item-align.welcome {
  flex-wrap: wrap;
}
.item-align.welcome label {
  margin: 2% 0;
}

.select-trigger {
  background: #1e1f22;
  border: 1px solid #313338;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  color: #dbdee1;
}

.dropdown-content {
  display: none;
  background: #2b2d31;
  border: 1px solid #1e1f22;
  max-height: 300px;
  overflow-y: auto;
  position: absolute;
  z-index: 100;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.dropdown-content.show {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  width: 450px;
}
.dropdown-content .check-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-radius: 4px;
  margin: 2px 5px;
  width: 90%;
}
.dropdown-content .check-item input[type=checkbox] {
  display: none;
}
.dropdown-content .check-item:hover {
  background: rgba(255, 255, 255, 0.05);
}
.dropdown-content .check-item:has(input:checked) {
  background: rgba(88, 101, 242, 0.15);
}
.dropdown-content .check-item:has(input:checked) .role-pill, .dropdown-content .check-item:has(input:checked) span {
  filter: brightness(1.2);
}
.dropdown-content .check-item .member-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dropdown-content .check-item .member-info .mini-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.search-input {
  width: 100%;
}

.check-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
}
.check-item:hover {
  background: #35373c;
}
.check-item input {
  margin-right: 10px;
}
.check-item .role-pill {
  color: var(--role-color);
  font-weight: bold;
}
.check-item .member-info {
  display: flex;
  align-items: center;
}
.check-item .member-info .mini-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 8px;
}

.role-pill {
  color: var(--role-color);
  background: rgba(var(--role-color-rgb), 0.1); /* Nécessite conversion RGB ou juste couleur brute */
  font-weight: 500;
}

.discord-input-style {
  background: #1e1f22;
  border: 1px solid #36393f;
  color: #dcddde;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}

.punishment-adder {
  display: flex;
  gap: 10px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

.btn-save-modal-auto-mod {
  margin: 10px;
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.search-input {
  background: #1e1f22;
  color: #dcddde;
  border: none;
  border-radius: 4px;
  padding: 5px;
}

@media (max-width: 1200px) {
  .dynamic-row {
    flex-direction: column;
    align-items: stretch;
  }
  .dynamic-row .li-config-container {
    flex-direction: column;
  }
  .dynamic-row .li-config-container .li-config .input-config {
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
  }
  .sidebar {
    left: -260px;
    box-shadow: none;
  }
  .main-content {
    margin-left: 0 !important;
    padding: 60px 10px 20px 10px;
    width: 100%;
    box-sizing: border-box;
  }
  .container {
    width: 100%;
    max-width: 100%;
  }
  .card {
    margin: 10px 5px !important;
    padding: 15px;
  }
  .burger-menu {
    display: flex !important;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
  }
  .nav-toggle:checked ~ .sidebar {
    left: 0;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
  }
  .nav-toggle:checked ~ .main-content {
    filter: blur(2px) brightness(0.7);
    pointer-events: none;
  }
}
@media (max-width: 768px) {
  .ticket-appearance {
    flex-direction: column;
  }
  .dynamic-row {
    flex-direction: column;
    align-items: stretch;
  }
  .dynamic-row .li-config-container {
    flex-direction: column;
  }
  .dynamic-row .btn-delete {
    width: 100%;
    margin-top: 10px;
  }
}
.discord-embed-preview {
  background: #2f3136;
  border-radius: 4px;
  display: flex;
  margin-top: 20px;
  padding: 10px;
  max-width: 400px;
}
.discord-embed-preview .embed-color-strip {
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: #5865f2;
  margin-right: 10px;
}
.discord-embed-preview .embed-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 8px;
}
.discord-embed-preview .embed-description {
  color: #dcddde;
  font-size: 0.9rem;
  white-space: pre-wrap;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85); /* Fond sombre transparent */
  z-index: 2000;
  backdrop-filter: blur(4px); /* Effet de flou moderne */
}

.modal-content {
  background: #313338; /* Gris foncé Discord */
  width: 40%;
  margin: 50px auto;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  animation: modalFadeIn 0.3s ease;
  padding: 20px;
}

.modal-header {
  background: #2b2d31;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1e1f22;
}

.modal-header h3 {
  margin: 0;
  color: #fff;
}

.modal-body {
  padding: 20px;
  max-height: 70vh;
  overflow-y: auto;
}

.modal-footer {
  background: #2b2d31;
  padding: 15px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.modal-btn-save {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

@keyframes modalFadeIn {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.settings-icon-wrapper {
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
  color: #b5bac1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.settings-icon-wrapper:hover {
  background-color: rgba(78, 80, 88, 0.3);
  color: #5865f2;
}
.settings-icon-wrapper:hover .settings-icon {
  transform: rotate(45deg);
}
.settings-icon-wrapper .settings-icon {
  transition: transform 0.3s ease;
}

.custom-select-container {
  position: relative;
  width: 100%;
}

.search-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #1e1f22; /* Fond sombre Discord */
  border-radius: 8px;
  padding: 5px 15px;
  border: 1px solid #2b2d31;
  min-height: 45px;
  cursor: text;
}

.selected-item {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.badge {
  padding: 4px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin: 2px;
}

.badge:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.remove-btn {
  cursor: pointer;
  font-weight: bold;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bage .remove-btn {
  cursor: pointer;
  color: #ff4747;
  font-weight: bold;
}

.combo-input {
  flex: 1;
  min-width: 50px;
  background: transparent;
  border: none;
  color: #dbdee1;
  width: 100%;
  padding: 8px 0;
  outline: none;
}

.dropdown-list {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #2b2d31;
  border-radius: 8px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.item {
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.item:hover {
  background: #35373c;
}

.role-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Style de base du Toast */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px; /* En bas à droite de l'écran */
  background-color: #43b581; /* Vert Discord */
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  font-size: 14px;
  z-index: 9999;
  /* On le cache en bas de l'écran par défaut */
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none; /* Pour ne pas bloquer les clics quand il est caché */
  /* Une transition fluide avec un petit effet rebond */
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* La classe qui sera ajoutée par le JavaScript pour l'afficher */
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Version erreur (Rouge) si tu veux t'en servir plus tard */
.toast.error {
  background-color: #ed4245; /* Rouge Discord */
}

.preview-modal-div1 {
  background: #2b2d31;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-modal-div2 {
  display: flex;
  align-items: center;
  gap: 10xp;
}

.preview-modal-span {
  font-size: 1.2rem;
}

.preview-modal-h3 {
  margin: 0;
  font-size: 1rem;
  color: #fff;
}

.pill-stepper-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pill-stepper-group label {
  font-family: "gg sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.pill-stepper-group .stepper-wrapper {
  display: flex;
  align-items: center;
  background-color: #111214;
  border-radius: 50px;
  padding: 4px;
  width: 100%;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.pill-stepper-group .stepper-wrapper:focus-within {
  border-color: #5865f2;
}
.pill-stepper-group .stepper-wrapper .step-btn {
  background-color: #2b2d31;
  color: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}
.pill-stepper-group .stepper-wrapper .step-btn:hover {
  background-color: rgb(66.8369565217, 69.9456521739, 76.1630434783);
}
.pill-stepper-group .stepper-wrapper .step-btn:active {
  transform: scale(0.9);
}
.pill-stepper-group .stepper-wrapper input[type=number] {
  background: transparent;
  border: none;
  color: white;
  text-align: center;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  outline: none;
}
.pill-stepper-group .stepper-wrapper input[type=number]::-webkit-outer-spin-button, .pill-stepper-group .stepper-wrapper input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.pill-stepper-group .stepper-wrapper input[type=number] {
  -moz-appearance: textfield;
}

.stepper-wrapper {
  display: flex;
  align-items: center;
  background-color: #111214;
  border-radius: 50px;
  padding: 4px;
  width: 100%;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.stepper-wrapper:focus-within {
  border-color: #5865f2;
}
.stepper-wrapper input {
  background: transparent;
  border: none;
}
.stepper-wrapper input:focus {
  outline: none;
  box-shadow: none;
}
.stepper-wrapper {
  /* ❌ Enlever les flèches pour Chrome, Safari, Edge, Opera */
}
.stepper-wrapper input[type=number]::-webkit-outer-spin-button,
.stepper-wrapper input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.stepper-wrapper {
  /* ❌ Enlever les flèches pour Firefox */
}
.stepper-wrapper input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield; /* Standard moderne */
}
.stepper-wrapper .step-btn {
  background-color: #2b2d31;
  color: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}
.stepper-wrapper .step-btn:hover {
  background-color: rgb(66.8369565217, 69.9456521739, 76.1630434783);
}
.stepper-wrapper .step-btn:active {
  transform: scale(0.9);
}

.moderation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.moderation-flex {
  display: flex;
  justify-content: flex-end;
}

.punishment-row {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #1e1f22;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 5px;
}

.reset-punishment {
  background-color: #ed4245;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin: 20px 0;
}

.module-badge-span1 {
  color: #b5bac1;
  font-weight: bold;
}

.module-badge-span2 {
  flex: 1;
  color: white;
}

.reaction-role-Tlabel {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #b9bbbe;
}

.width15 {
  width: 15%;
}

.width35 {
  width: 35%;
}

.width45 {
  width: 45%;
}

.pc-only {
  display: flex;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .moderation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pc-only {
    display: none;
  }
  .mobile-only {
    display: flex;
    margin: 2% 0;
  }
  .role-row {
    flex-direction: column;
  }
  .role-row .width15, .role-row .width45 {
    width: 100% !important;
  }
  .role-row .width35 {
    width: 100% !important;
  }
  .role-row .width35 .input-config {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .moderation-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .modal-content {
    background: #313338; /* Gris foncé Discord */
    width: auto;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
    padding: 0;
  }
  .modal-btn-save {
    margin: 10px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  }
  .punishment-row {
    display: flex;
    align-items: stretch;
    gap: 15px;
    background: #1e1f22;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 5px;
    flex-direction: column;
  }
  .punishment-div {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
  }
  .punnishment-label {
    padding: 0 10px;
  }
  .module-badge {
    display: flex;
    justify-content: center;
  }
  .module-badge-span1, .module-badge-span2 {
    display: flex;
    justify-content: center;
  }
  .lang-selector {
    width: auto !important;
  }
  .lang-selector .lang-selected {
    width: 100%;
  }
  .lang-selector .lang-selected .text {
    display: none;
  }
  .lang-selector .lang-list {
    width: 100%;
  }
  .lang-selector .lang-list .text {
    display: none;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.top-nav {
  position: fixed;
  top: 0;
  right: 0;
  padding: 20px;
  display: flex;
  justify-content: flex-end;
  z-index: 1000;
}
@media (max-width: 480px) {
  .top-nav {
    padding: 10px;
  }
}

.lang-selector {
  position: relative;
  width: 160px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.lang-selector .lang-selected {
  background: #1e1f22;
  border: 1px solid #2f3136;
  padding: 10px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.lang-selector .lang-selected:hover {
  border-color: #202225;
}
.lang-selector .lang-selected .flag {
  font-size: 1.2rem;
}
.lang-selector .lang-selected .text {
  font-size: 0.9rem;
  color: #dcddde;
  flex-grow: 1;
}
.lang-selector .lang-selected .arrow {
  border: solid #36393f;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.3s;
}
.lang-selector .lang-list {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: #1e1f22;
  border: 1px solid #2f3136;
  border-radius: 8px;
  list-style: none;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.lang-selector .lang-list li {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  transition: background 0.2s;
  color: #fff;
}
.lang-selector .lang-list li:hover {
  background: #2f3136;
}
.lang-selector .lang-list li.active {
  font-weight: bold;
}
.lang-selector .lang-list li .flag {
  font-size: 1.1rem;
}
.lang-selector.open .lang-selected .arrow {
  transform: rotate(-135deg);
}
.lang-selector.open .lang-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.extension-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.extension-selector .ext-btn {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.extension-selector .ext-btn input[type=checkbox] {
  display: none;
}
.extension-selector .ext-btn .ext-label {
  display: inline-block;
  padding: 8px 16px;
  background: #2b2d31;
  border: 1px solid #1e1f22;
  border-radius: 8px;
  color: #b5bac1;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.extension-selector .ext-btn:hover .ext-label {
  background: #313338;
}
.extension-selector .ext-btn input[type=checkbox]:checked + .ext-label {
  background: #5865f2;
  color: #ffffff;
  border-color: #5865f2;
  box-shadow: 0 4px 10px rgba(88, 101, 242, 0.3);
  transform: translateY(-1px);
}

.switch-toggle-menu {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  font-size: 0.9rem;
}

.settings-form {
  background-color: #36393f;
  color: white;
  padding: 20px;
  border-radius: 8px;
  font-family: "gg sans", sans-serif, Arial;
}
.settings-form h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 14px;
  text-transform: uppercase;
  color: #B5BAC1;
}

.theme-selector {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}
.theme-selector .theme-option {
  cursor: pointer;
  position: relative;
  display: inline-block;
}
.theme-selector .theme-option input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.theme-selector .theme-option .swatch {
  display: block;
  width: 128px;
  height: 64px;
  border-radius: 5%;
  border: 2px solid transparent;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}
.theme-selector .theme-option:hover .swatch {
  transform: scale(1.1);
}
.theme-selector .theme-option input[type=radio]:checked + .swatch {
  border: 2px solid #dcddde;
  outline: 2px solid #5865f2;
  outline-offset: 2px;
  transform: scale(1);
}

button[type=submit] {
  background-color: #5865f2;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.2s;
}
button[type=submit]:hover {
  background-color: rgb(40.6833333333, 57.3666666667, 238.3166666667);
}

.custom-emoji-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: #36393f;
  padding: 10px;
  border-radius: 5px;
  max-height: 150px;
  overflow-y: auto;
}

.emoji-item {
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: background 0.2s, transform 0.1s;
}

.emoji-item img {
  width: 32px;
  height: 32px;
  display: block;
}

.emoji-item:hover {
  background: #2f3136;
  transform: scale(1.1);
}

.emojij-item.selected {
  background: #202225;
  box-shadow: 0 0 5px #202225;
}

.premium-flex-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 15px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.premium-flex-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 15px;
}

.premium-flex-row:last-child {
  border-bottom: none;
}

.premium-flex-row:hover:not(.premium-flex-header) {
  background-color: rgba(255, 255, 255, 0.05); /* Petit effet de survol */
}

.premium-flex-header {
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.premium-flex-cell {
  flex: 1; /* Chaque colonne prend la même largeur */
  display: flex;
  align-items: center;
}

.premium-flex-cell.actions {
  justify-content: flex-end; /* Aligne les boutons à droite */
  gap: 10px;
}

.unsaved-bar {
  position: fixed;
  bottom: -100px; /* Caché en bas par défaut */
  left: 50%;
  transform: translateX(-50%);
  background-color: #111214;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: bottom 0.3s ease;
  z-index: 9999;
}

.unsaved-bar.show {
  bottom: 30px; /* Remonte et s'affiche */
}

/* Style du menu déroulant */
details.automod-dropdown {
  width: 100%;
}

/* Style du bouton cliquable */
details.automod-dropdown summary.automod-summary {
  background-color: #2f3136;
  padding: 12px 15px;
  border-radius: 8px;
  cursor: pointer;
  list-style: none; /* Enlève la flèche par défaut du navigateur */
  font-weight: bold;
  color: white;
  transition: background-color 0.2s ease;
  border: 1px solid #202225;
}

/* Cache la flèche sur les navigateurs basés sur Webkit (Chrome, Safari) */
details.automod-dropdown summary.automod-summary::-webkit-details-marker {
  display: none;
}

/* Effet au survol */
details.automod-dropdown summary.automod-summary:hover {
  background-color: #393c43;
}

/* Quand le menu est OUVERT : on change l'apparence du bouton */
details[open].automod-dropdown summary.automod-summary {
  border-radius: 8px 8px 0 0;
  background-color: #393c43;
}

/* Animation de la petite flèche personnalisée */
details[open].automod-dropdown .dropdown-arrow {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
  display: inline-block;
}

details:not([open]).automod-dropdown .dropdown-arrow {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  display: inline-block;
}

/* --- PAGE PREMIUM --- */
.premium-page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  color: #dcddde;
}

.premium-header {
  text-align: center;
  margin-bottom: 3rem;
}

.premium-header h1 {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

/* Design de la carte */
.premium-card {
  background-color: #2f3136;
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #40444b;
}

/* Bordure dorée pour l'offre */
.premium-card.offer-state {
  border-top: 4px solid #ffd700;
}

/* Bordure verte pour l'état actif */
.premium-card.active-state {
  border-top: 4px solid #4ade80;
}

.plan-header h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.plan-price {
  margin-bottom: 2rem;
}

.plan-price .price {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
}

.plan-price .period {
  font-size: 1.2rem;
  color: #b9bbbe;
}

.premium-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  text-align: left;
  width: 100%;
}

.premium-features li {
  margin-bottom: 1rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- BOUTONS --- */
.btn-discord {
  background-color: #5865F2;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  width: 100%;
  display: inline-block;
  transition: background-color 0.2s ease;
}

.btn-discord:hover {
  background-color: #4752C4;
}

.btn-manage {
  background-color: #4f545c;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 1.5rem;
  transition: background-color 0.2s ease;
}

.btn-manage:hover {
  background-color: #686d73;
}

.disclaimer {
  font-size: 0.8rem;
  color: #72767d;
  margin-top: 1rem;
}

.status-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.cmd-grid-header {
  display: grid;
  grid-template-columns: 1.5fr 2.5fr 2fr 100px; /* Largeur des 4 colonnes */
  background: #1e1f22;
  padding: 15px;
  color: #888;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  border-bottom: 1px solid #1e1f22;
}

.cmd-grid-row {
  display: grid;
  grid-template-columns: 1.5fr 2.5fr 2fr 100px;
  padding: 15px;
  border-bottom: 1px solid #1e1f22;
  background: #2b2d31;
  color: #dbdee1;
  align-items: center; /* Centre tout verticalement ! */
  transition: background 0.2s;
}

.cmd-grid-row:hover {
  background: #313338;
}

.cmd-grid-empty {
  padding: 30px;
  text-align: center;
  color: #888;
}

.btn-floating {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: #5865F2;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-floating:hover {
  background: #4752C4;
  transform: scale(1.1);
}

.btn-action {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 5px;
  margin-left: 10px;
  opacity: 0.7;
  transition: 0.2s;
}

.btn-action:hover {
  opacity: 1;
  transform: scale(1.2);
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-overlay.open {
  display: flex;
}

.modal-content {
  background: #2b2d31;
  width: 100%;
  max-width: 600px;
  padding: 30px;
  border-radius: 12px;
  max-height: 90vh;
  overflow-y: auto;
}

/* Cacher la checkbox des rôles */
.role-option input[type=checkbox] {
  display: none;
}

.check-icon {
  opacity: 0;
  color: #fff;
  margin-left: auto;
  font-weight: bold;
  transition: 0.2s;
}

.role-option input[type=checkbox]:checked ~ .check-icon {
  opacity: 1;
}

/* Design du Formulaire Modal */
.form-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: bold;
  color: #b5bac1;
  font-size: 13px;
  text-transform: uppercase;
}

.input-config.full-width {
  width: 100%;
  box-sizing: border-box;
}

/* Le Sélecteur de Couleur Custom */
.color-picker-wrapper {
  display: flex;
  align-items: stretch;
  height: 40px;
}

#cmd-color-text {
  flex-grow: 1;
  border-radius: 5px 0 0 5px;
  margin: 0;
  border-right: none;
}

.color-box {
  -webkit-appearance: none;
  border: none;
  width: 50px;
  height: 100%;
  padding: 0;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
  background: #1e1f22;
  border: 1px solid #1e1f22;
}

.color-box::-webkit-color-swatch-wrapper {
  padding: 0;
}

.color-box::-webkit-color-swatch {
  border: none;
  border-radius: 0 3px 3px 0;
}

/* Le Menu Déroulant des Rôles (qui manquait !) */
.custom-select {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.custom-select-header {
  background: #1e1f22;
  border: 1px solid #313338;
  padding: 12px 15px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #dbdee1;
}

.custom-select-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #2b2d31;
  border: 1px solid #1e1f22;
  border-radius: 5px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  margin-top: 5px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.custom-select-options.open {
  display: block;
}

.role-option {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  transition: 0.2s;
  border-bottom: 1px solid #1e1f22;
}

.role-option:hover {
  background: #383a40;
}

.role-color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 10px;
  display: inline-block;
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #202225;
}

.foxy {
  color: inherit;
}

.foxy:hover {
  color: inherit;
}

.tos {
  padding: 5px;
}
.tos a {
  color: #dcddde;
}

.main-content-tos {
  display: flex;
  flex-direction: column;
  margin-left: 300px;
  margin-bottom: 50px;
  padding: 80px 20px 20px 20px;
  transition: margin-left 0.3s ease-in-out;
}

.tos-h1 {
  display: flex;
  justify-content: center;
  margin-bottom: 2%;
}

.tos-h2, .tos-h3 {
  margin: 2% 0;
}

.tos-ul {
  margin-left: 2%;
  margin-bottom: 1%;
}

.tos-spam {
  margin: 1% 0;
}/*# sourceMappingURL=style.css.map */