/* Exemplo de CSS para painel admin */
/* Reset básico e configurações globais */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f4f6fb;
  color: #222;
  height: 100%;
  min-height: 100vh;
  overflow-x: hidden;   /* Nunca mostra barra horizontal */
  overflow-y: scroll;     /* Permite rolagem vertical */
}

/* Container principal do painel admin */
.admin-container {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(60,66,87,0.10);
  padding: 32px 28px;
}

/* Título do painel admin */
.admin-title {
  font-size: 2rem;
  font-weight: 700;
  color: #212d63;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

/* Formulário de cadastro de desconto no admin */
.desconto-form {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

/* Label do formulário de desconto */
.desconto-form label {
  font-size: 1em;
  color: #212d63;
  font-weight: 600;
  margin-bottom: 4px;
}

/* Inputs do formulário de desconto */
.desconto-form input[type="text"],
.desconto-form input[type="number"] {
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 1em;
  min-width: 120px;
}

/* Botão do formulário de desconto */
.desconto-form button {
  padding: 9px 22px;
  border-radius: 4px;
  border: none;
  background: #5469d4;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}
.desconto-form button:hover {
  background: #212d63;
}

/* Tabela de descontos no admin */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #f7fafc;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}

/* Células da tabela admin */
.admin-table th, .admin-table td {
  padding: 14px 12px;
  text-align: left;
}

/* Cabeçalho da tabela admin */
.admin-table th {
  background: #5469d4;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Linhas pares da tabela admin */
.admin-table tr:nth-child(even) {
  background: #eef2fa;
}

/* Hover na tabela admin */
.admin-table tr:hover {
  background: #dde3f7;
}

/* Botão de ação na tabela admin */
.admin-btn {
  padding: 7px 18px;
  border-radius: 4px;
  border: none;
  background: #e74c3c;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.admin-btn:hover {
  background: #c0392b;
}

/* Botão de rejeitar saque */
.admin-btn.rejeitar-saque-btn {
  background: #dc3545;
}
.admin-btn.rejeitar-saque-btn:hover {
  background: #c82333;
}

/* Seção de remoção de códigos de afiliado */
.afiliados-section {
  margin-bottom: 24px;
}

.remover-codigo-container {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.input-afiliado {
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 14px;
  min-width: 200px;
}

.btn-remover-afiliado {
  background: #dc3545 !important;
}

.btn-remover-afiliado:hover {
  background: #c82333 !important;
}

.info-remover {
  color: #666;
  font-size: 14px;
  margin: 8px 0 0 0;
  font-style: italic;
}

/* Título de seção no admin */
.admin-section-title {
  font-size: 1.2em;
  font-weight: 600;
  margin: 24px 0 12px 0;
  color: #5469d4;
  letter-spacing: 0.5px;
}

/* Reset para todos os elementos */
* {
  padding: 0;
  margin: 0;
  color: #1a1f36;
  box-sizing: border-box;
  word-wrap: break-word;
  font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Ubuntu,sans-serif;
}

/* Ajustes para o body */
body {
  min-height: 100vh; /* pode manter */
  background-color: #ffffff;
  overflow-y: auto;  /* garante rolagem vertical */
}

/* Títulos gerais */
h1 {
    letter-spacing: -1px;
    font-size: 2rem;
    margin-bottom: 16px;
}

/* Links padrão */
a {
  color: #5469d4;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #212d63;
}

/* Container de login */
.login-root {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;    /* Já está correto! */
  align-items: center;
  justify-content: flex-start;
  background: transparent;
}

/* Fundo animado do login */
.loginbackground {
    min-height: 692px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

/* Utilitários de flex/grid */
.flex-flex { display: flex; }
.flex-direction--column { flex-direction: column; }
.align-center { align-items: center; }
.center-center { align-items: center; justify-content: center; }
.flex-justifyContent--center { justify-content: center; }
.box-root { box-sizing: border-box; }

/* Grid de fundo animado */
.loginbackground-gridContainer {
    display: grid;
    grid-template-columns: [start] 1fr [left-gutter] repeat(16,86.6px) [left-gutter] 1fr [end];
    grid-template-rows: [top] 1fr [top-gutter] repeat(8,64px) [bottom-gutter] 1fr [bottom];
    justify-content: center;
    margin: 0 -2%;
    transform: rotate(-12deg) skew(-12deg);
}

/* Cores de fundo utilitárias */
.box-divider--light-all-2 { box-shadow: inset 0 0 0 2px #e3e8ee; }
.box-background--blue { background-color: #5469d4; }
.box-background--white { background-color: #ffffff; }
.box-background--blue800 { background-color: #212d63; }
.box-background--gray100 { background-color: #e3e8ee; }
.box-background--cyan200 { background-color: #7fd3ed; }

/* Utilitários de padding */
.padding-top--64 { padding-top: 64px; }
.padding-top--24 { padding-top: 24px; }
.padding-top--48 { padding-top: 48px; }
.padding-bottom--24 { padding-bottom: 24px; }
.padding-horizontal--48 { padding: 48px; }
.padding-bottom--15 { padding-bottom: 15px; }

/* Container do formulário de login */
.formbg-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 400px;
  margin-top: -50px;
}

/* Estilo para span e label */
span {
    display: block;
    font-size: 20px;
    line-height: 28px;
    color: #1a1f36;
}
label {
    margin-bottom: 10px;
}
.reset-pass a, label {
    font-size: 14px;
    font-weight: 600;
    display: block;
}
.reset-pass > a {
    text-align: right;
    margin-bottom: 10px;
}
.grid--50-50 {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
}

/* Campos de formulário */
.field input {
    font-size: 16px;
    line-height: 28px;
    padding: 8px 16px;
    width: 100%;
    min-height: 44px;
    border: none;
    border-radius: 4px;
    outline-color: rgb(84 105 212 / 0.5);
    background-color: #fff;
    box-shadow: rgba(60, 66, 87, 0.16) 0px 0px 0px 1px;
    margin-bottom: 8px;
}

/* Botão submit */
input[type="submit"] {
    background-color: #5469d4;
    box-shadow: rgb(84, 105, 212) 0px 0px 0px 1px, rgba(60, 66, 87, 0.08) 0px 2px 5px 0px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
input[type="submit"]:hover {
    background-color: #212d63;
}

/* Checkbox customizado */
.field-checkbox input {
    width: 20px;
    height: 15px;
    margin-right: 5px; 
    box-shadow: unset;
    min-height: unset;
}
.field-checkbox label {
    display: flex;
    align-items: center;
    margin: 0;
}
a.ssolink {
    display: block;
    text-align: center;
    font-weight: 600;
}
.footer-link {
  text-align: center;
  margin-top: 2px;   /* Antes era 18px ou 24px */
  font-size: 1em;
  z-index: 10;
  background: transparent;
}

.footer-link a {
  color: #5469d4;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link a:hover {
  color: #212d63;
}
.listing a {
    color: #697386;
    font-weight: 600;
    margin: 0 10px;
}

/* Animações de fundo */
.animationRightLeft { animation: animationRightLeft 2s ease-in-out infinite; }
.animationLeftRight { animation: animationLeftRight 2s ease-in-out infinite; }
.tans3s { animation: animationLeftRight 3s ease-in-out infinite; }
.tans4s { animation: animationLeftRight 4s ease-in-out infinite; }

@keyframes animationLeftRight {
  0% { transform: translateX(0px);}
  50% { transform: translateX(1000px);}
  100% { transform: translateX(0px);}
} 
@keyframes animationRightLeft {
  0% { transform: translateX(0px);}
  50% { transform: translateX(-1000px);}
  100% { transform: translateX(0px);}
}

/* Responsividade para telas pequenas */
@media (max-width: 600px) {
  .formbg { padding: 16px; max-width: 95vw; }
  .padding-horizontal--48 { padding: 16px; }
  .loginbackground-gridContainer { display: none; }
}

/* REMOVIDO - Definição duplicada */

/* Área de compra de key mensal */
.key-area {
  flex: 1 1 340px;
  max-width: 400px;
}

/* Área de afiliado */
.afiliado-section {
  flex: 1 1 340px;
  max-width: 400px;
  min-width: 280px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Card do afiliado */
.afiliado-card {
  background: #f7fafc;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(60,66,87,0.06);
  padding: 32px 20px 24px 20px;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

/* Card da key mensal */
.key-card {
  background: #f7fafc;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(60,66,87,0.06);
  padding: 32px 20px 24px 20px;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

/* Bloco do código de afiliado */
.afiliado-codigo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

/* Label do afiliado */
.afiliado-label {
  font-size: 1em;
  color: #5469d4;
  font-weight: 600;
}

/* Código de afiliado visual */
.codigo-afiliado {
  font-family: monospace;
  font-size: 1.3em;
  background: #e3e8ee;
  color: #212d63;
  padding: 4px 16px;
  border-radius: 6px;
  letter-spacing: 2px;
}

/* Botões do afiliado */
.afiliado-botoes {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
  width: 100%;
}

/* Botão de sacar e usar créditos */
.btn-sacar,
.btn-usar-creditos {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  max-width: 220px;
  height: 48px;
  font-size: 1.05em;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  box-sizing: border-box;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-sacar { background: #e74c3c; color: #fff; }
.btn-sacar:hover { background: #c0392b; }
.btn-usar-creditos { background: #27ae60; color: #fff; }
.btn-usar-creditos:hover { background: #219653; }

/* Bloco de indicação */
.afiliado-indique { width: 100%; text-align: left; }
.afiliado-indique-box { display: flex; gap: 8px; margin-top: 6px; }
.afiliado-indique-box input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 1em;
}

/* Créditos do afiliado */
.afiliado-creditos { font-size: 1.1em; color: #212d63; margin-top: 10px; }
.afiliado-valor { font-weight: bold; margin-left: 6px; }

/* Blocos cinza claro */
.bloco-cinza {
  background: #f7fafc;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(60,66,87,0.06);
  padding: 32px 24px;
  min-width: 320px;
  max-width: 400px;
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Espaço entre os blocos */
.cliente-main-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}

/* Responsivo para mobile */
@media (max-width: 900px) {
  .formbg { padding: 24px 4vw; }
  .cliente-main-row {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .bloco-cinza, .key-area, .afiliado-section, .key-card, .afiliado-card {
    max-width: 98vw;
    width: 100%;
    min-width: unset;
  }
}

/* Título das áreas */
.area-title {
  text-align: center;
  color: #212d63;
  font-size: 1.5em;
  margin-bottom: 18px;
  font-weight: 700;
}

/* Card de key mensal (extra) */
key-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Input de desconto */
.input-desconto {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  width: 80%;
  max-width: 220px;
  margin-bottom: 8px;
  text-align: center;
}

/* Botões de aplicar e resetar desconto */
.btn-aplicar, .btn-resetar { align-self: center; }
.sair-link { align-self: center; }

/* Mensagem de desconto */
.mensagem-desconto { margin-top: 6px; font-size: 0.95em; }

/* Link de sair */
.sair-link {
  display: block;
  margin-top: 24px;
  color: #5469d4;
  text-decoration: none;
}

/* Botão resetar */
.btn-resetar {
  margin-top: 12px;
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 20px;
  cursor: pointer;
}

/* Box de desconto */
.desconto-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 8px;
}

/* Formulário interno */
.formbg-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Formulário de registro */
form#register-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 440px;   /* ou maior, ex: 500px */
}
form#register-form .field {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
form#register-form input {
  width: 90%;
  max-width: 400px;   /* aumenta o campo de input */
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1em;
  text-align: center;
}
form#register-form button[type="submit"] {
  width: 90%;
  max-width: 260px;
  padding: 10px;
  border-radius: 6px;
  background: #5469d4;
  color: #fff;
  border: none;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
form#register-form button[type="submit"]:hover { background: #212d63; }
#register-message { margin-top: 10px; text-align: center; color: #e74c3c; }

/* Links gerais */
a {
  display: block;
  margin-top: 18px;
  color: #5469d4;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
}

/* Barra de rodapé */
.footer-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 24px 0 16px 0;
  background: transparent;
  font-size: 1em;
  color: #5469d4;
  width: 100%;
}
.footer-bar a {
  color: #5469d4;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bar a:hover { color: #212d63; }

/* Link de reset de senha */
.reset-pass {
  width: 100%;
  text-align: right;
  margin-top: 4px;
  margin-bottom: 0;
  line-height: 1;
}
.reset-pass a {
  font-size: 0.98em;
  color: #5469d4;
  text-decoration: none;
  white-space: nowrap;
}
.reset-pass a:hover {
  text-decoration: underline;
  color: #212d63;
}

/* REMOVIDO - Definição duplicada */

/* Blocos de cada área do cliente */
.key-area,
.afiliado-section {
  flex: 1 1 650px;
  max-width: calc(100vw - 0px);
  min-width: 500px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Painéis internos do cliente */
.key-card,
.afiliado-card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 40px 32px 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 16px;
  max-width: 600px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Responsividade para mobile */
@media (max-width: 900px) {
  .cliente-main-row {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .key-area,
  .afiliado-section,
  .key-card,
  .afiliado-card {
    max-width: 98vw;
    min-width: unset;
    width: 100%;
  }
}

/* PIX do afiliado */
.afiliado-pix {
  width: 100%;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
#pix-cliente {
  width: 100%;
  max-width: 260px;
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.btn-salvar-pix {
  padding: 6px 14px;
  font-size: 0.95em;
  border-radius: 4px;
  background: #5469d4;
  color: #fff;
  border: none;
  cursor: pointer;
}
.btn-salvar-pix:hover { background: #212d63; }

/* Cupons guardados */
#cupons-guardados-area { margin-top: 12px; }
.cupom-guardado {
  display: inline-block;
  background: #eef2fa;
  border-radius: 6px;
  padding: 6px 12px;
  margin: 4px 6px 4px 0;
  font-size: 1em;
  color: #212d63;
  border: 1px solid #5469d4;
}
.cupom-guardado.selected {
  background: #5469d4;
  color: #fff;
  border: 1.5px solid #212d63;
  font-weight: bold;
}
.cupom-guardado.selected button { background: #212d63; }
.cupom-guardado button {
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  border: none;
  background: #5469d4;
  color: #fff;
  cursor: pointer;
  font-size: 0.95em;
}
.cupom-guardado.selected button { background: #212d63; }

/* REMOVIDO - Definição duplicada */

/* Mensagem de boas-vindas */
.welcome-bar {
  width: 100%;
  max-width: 1300px;      /* aumente para caber a frase toda */
  margin: 35px auto 30px auto;
  padding: 18px 32px;
  background: linear-gradient(90deg, #5469d4 0%, #7fd3ed 100%);
  color: #fff;
  border-radius: 10px;
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 16px rgba(60,66,87,0.10);
  letter-spacing: 0.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
}

.welcome-bar .move {
  border-right: .06em solid #fff;
  background: transparent;
  font-size: 1em;
  width: 60ch;
  margin: 0 0.5ch;
  padding: 0.3em 1ch;      /* aumenta o padding vertical */
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.3;        /* aumenta o espaço para letras baixas */
  animation: digitacao 2.2s steps(60, end), barra .7s step-end infinite alternate;
}

@keyframes digitacao { 
    0% { width: 0; } 
    100% { width: 60ch; }
}
@keyframes barra { 
    50% { border-color: transparent; } 
}

/* Ajustes gerais para formulários */
.formbg, .formbg-outer {
  max-width: 480px;   /* ou maior, ex: 540px */
  width: 100%;
  margin: 0 auto;
}
form#register-form {
  max-width: 440px;   /* ou maior, ex: 500px */
  width: 100%;
}
form#register-form input {
  max-width: 400px;   /* aumenta o campo de input */
  width: 100%;
}

/* Apenas para o registro */
.formbg-register {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
form#register-form {
  max-width: 440px;
  width: 100%;
}
form#register-form input {
  max-width: 400px;
  width: 100%;
}

.formbg-outer,
.formbg {
  max-width: 1300px; /* ou maior, para caber os dois blocos */
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Novas regras para a área de top vendedores */
.top-vendedores-scroll {
  max-width: 700px;
  margin-bottom: 24px;
}
.top-vendedores-scroll > div {
  max-height: 210px; /* 3 linhas de 70px cada, ajuste se quiser */
  overflow-y: auto;
}
.top-vendedores-scroll table {
  width: 100%;
  border-collapse: collapse;
}
.top-vendedores-scroll thead th {
  position: sticky;
  top: 0;
  background: #5469d4;
  color: #fff;
  z-index: 2;
}

/* Novas classes para botões do painel */
.painel-btn {
  padding: 7px 14px;
  margin: 2px 2px;
  border-radius: 4px;
  border: none;
  background: #5469d4;
  color: #fff;
  font-weight: 600;
  font-size: 0.98em;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 2px 6px rgba(60,66,87,0.07);
  text-decoration: none;
}

.painel-btn:hover,
a.painel-btn:hover {
  background: #212d63;
  transform: translateY(-2px) scale(1.04);
  color: #fff;
  text-decoration: none;
}

.painel-btn.bloquear {
  background: #e74c3c;
}
.painel-btn.bloquear:hover {
  background: #c0392b;
}

.painel-btn.desbloquear {
  background: #27ae60;
}
.painel-btn.desbloquear:hover {
  background: #219653;
}

/* Estilos para a nova seção de clientes no painel */
.clientes-painel-scroll {
  max-width: 900px;
  margin-bottom: 24px;
}
.clientes-scroll-body {
  max-height: 210px; /* 3 linhas de ~70px cada */
  overflow-y: auto;
}
.clientes-painel-scroll table {
  width: 100%;
  border-collapse: collapse;
}
.clientes-painel-scroll thead th {
  position: sticky;
  top: 0;
  background: #5469d4;
  color: #fff;
  z-index: 2;
}

/* Botões em linha só */
.clientes-acoes {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
}

/* Novas regras para a área de saques */
.saques-scroll-body {
  max-height: 210px; /* 3 linhas de ~70px cada */
  overflow-y: auto;
}

/* Modal de comissão */
.modal-comissao {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-comissao-content {
  background: #fff;
  color: #222;
  padding: 28px 32px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  position: relative;
  text-align: left;
}
.modal-comissao-close {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 1.6em;
  color: #5469d4;
  cursor: pointer;
  font-weight: bold;
}

/* Novas classes para o cabeçalho do admin */
.admin-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 16px;
}

.openai-key-box {
  display: flex;
  align-items: center;
  background: #f7f7fa;
  border-radius: 6px;
  padding: 4px 10px;
  box-shadow: 0 1px 2px #0001;
  gap: 6px;
}

#openai-key-success {
  background: #eafaf1;
  border: 1px solid #27ae60;
  border-radius: 4px;
  padding: 6px 12px;
  font-weight: bold;
  box-shadow: 0 2px 8px #0001;
}
.welcome-user {
  color: #fff;
}