/* =========================================
   TABELAS RPG – STORMPK
   MARROM ESCURO / PRISTON STYLE
   TAMANHO AJUSTADO (MAIOR)
========================================= */

/* TÍTULOS DAS SEÇÕES */
.main-content-info-title {
  font-family: "Cinzel", serif;
  font-size: 28px;
  color: #d4af37;
  text-shadow: 0 0 10px rgba(212,175,55,0.5);
  margin: 2.5rem auto 14px;
  padding-left: 14px;
  border-left: 4px solid #6b4b1e;
  max-width: 1150px;
}

/* CONTAINER DA TABELA */
.blue-table {
  max-width: 1150px;      /* <<< AUMENTADO AQUI */
  margin: 0 auto 55px;
  padding: 16px;
  background: radial-gradient(circle at top, #1b120c, #070403);
  border-radius: 16px;
  box-shadow: 0 0 45px rgba(0,0,0,0.9);
}

/* TABELA BASE */
.blue-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Cinzel", serif;
  color: #e6d6b8;
  font-size: 14.5px;      /* <<< FONTE UM POUCO MAIOR */
  background: transparent;
  border: none;
}

/* REMOVE BORDAS ANTIGAS */
.blue-table table,
.blue-table tr,
.blue-table td {
  border: none !important;
}

/* CABEÇALHO */
.blue-table tr:first-child td {
  background: linear-gradient(180deg, #2a1a0e, #140a04);
  color: #f0d58c;
  font-weight: bold;
  border-bottom: 1px solid rgba(212,175,55,0.3) !important;
}

/* CÉLULAS */
.blue-table td {
  padding: 10px 8px;      /* <<< MAIS ESPAÇO */
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

/* PRIMEIRA COLUNA */
.blue-table td:first-child {
  color: #e8dcc0;
  font-size: 14px;
  text-align: left;
}

/* LINHAS ALTERNADAS */
.blue-table tr:nth-child(even):not(:first-child) {
  background: rgba(255,255,255,0.03);
}

/* HOVER */
.blue-table tr:hover:not(:first-child) {
  background: rgba(212,175,55,0.1);
}

/* ÍCONES */
.blue-table img {
  width: 22px;
  height: auto;
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.6));
}

/* NÚMEROS */
.blue-table td:not(:first-child) {
  color: #cbbfa8;
  font-weight: bold;
}

/* SCROLLBAR */
.blue-table::-webkit-scrollbar {
  height: 8px;
}

.blue-table::-webkit-scrollbar-track {
  background: #120a04;
}

.blue-table::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #6b4b1e, #d4af37);
  border-radius: 6px;
}

/* TEXTO DE ATENÇÃO */
li {
  margin-top: 20px;
  color: #d4af37;
  font-family: "Cinzel", serif;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .blue-table {
    max-width: 95%;
    padding: 12px;
  }

  .main-content-info-title {
    max-width: 95%;
    font-size: 24px;
  }

  .blue-table table {
    font-size: 13px;
  }

  .blue-table img {
    width: 20px;
  }
}
