/* Kontener główny tabeli */
.characterprofile-table-pro {
  width: 100%;
  max-width: 835px;
  background: #121212;
  border-collapse: collapse;
  font-family: 'Cinzel', serif;
  color: #e2d3b3;
  box-shadow: 0 0 15px rgba(255, 94, 0, 0.2);
  margin: 20px 20px 20px 20px;
  border: 1px solid rgba(255, 94, 0, 0.1);
  overflow: hidden;
  border-radius: 6px;
}

/* Nagłówek tabeli (z outfitem, flagą, imieniem) */
.characterprofile-table-pro thead {
  background: radial-gradient(circle at center, #1e1e1e 0%, #111 100%);
  text-align: center;
  border-bottom: 1px solid rgba(255, 94, 0, 0.1);
}

.characterprofile-table-pro thead tr {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  gap: 15px;
}

.characterprofile-table-pro thead th {
  padding: 20px 10px;
  font-size: 24px;
  font-weight: bold;
  color: #f3eacb;
  text-shadow: 1px 1px 3px black;
  border: none;
}

/* Outfit i flaga */
.characterprofile-table-pro .outfit img,
.characterprofile-table-pro .flag img {
  max-height: 64px;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(255, 94, 0, 0.3);
}

.characterprofile-table-pro .flag {
  margin-top: 8px;
}

/* Treść tabeli */
.characterprofile-table-pro tbody tr {
  border-bottom: 1px solid rgba(255, 94, 0, 0.05);
  transition: background 0.3s;
}

.characterprofile-table-pro tbody tr:hover {
  background: rgba(255, 94, 0, 0.03);
}

.characterprofile-table-pro td {
  padding: 20px 16px;
  font-size: 20px;
  color: #c9b8a5;
}

.characterprofile-table-pro td:first-child {
  color: #b47c4e;
  font-weight: 600;
  width: 35%;
}

.characterprofile-table-pro a {
  color: #ffbb77;
  text-decoration: none;
}

.characterprofile-table-pro a:hover {
  color: #ff9966;
  text-shadow: 0 0 5px rgba(255, 94, 0, 0.2);
}

.characterprofile-special-text {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: bold;
  color: #ffcc99;
  letter-spacing: 1px;
  text-shadow:
    0 0 3px rgba(255, 136, 0, 0.6),
    0 0 5px rgba(255, 94, 0, 0.4),
    1px 1px 2px black;
  text-align: center;
  position: relative;
  padding: 12px 0;
  display: block;
  margin: 12px auto -20px auto;
  width: 100%;
}
