body {
    background-color: #1e1e1e;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    font-size: 13px;
    padding: 20px;
}

.tables-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.table-box {
    flex: 1;
    min-width: 300px;
}

h1, h2 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 5px;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 5px;
    font-size: 10px;
    background-color: #2c2c2c;
    color: #e0e0e0;
}

th, td {
    border: 1px solid #444;
    padding: 4px;
    text-align: left;
}

th {
    background-color: #333;
    color: #ffffff;
}

.red {
    color: #ff6b6b;
    font-weight: bold;
}

.yellow {
    color: #f1c40f;
    font-weight: bold;
}

.normal {
    color: #e0e0e0;
}

#lastUpdate {
    margin-bottom: 10px;
    color: #aaa;
}

.context-menu {
    position: absolute;
    background-color: #333;
    border: 1px solid #555;
    color: #fff;
    font-size: 12px;
    z-index: 1000;
    display: none;
    box-shadow: 2px 2px 5px #000;
    border-radius: 4px;
}

.context-menu div {
    padding: 6px 12px;
    cursor: pointer;
}

.context-menu div:hover {
    background-color: #555;
}
.attack-character {
    background-color: #19760f;
}

.copy-toast {
    position: fixed;
    top: 16px;
    right: 50%;
    background: rgba(50,50,50,0.95);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease;
}
.copy-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.vocation-cell {
    display: flex;
    align-items: center;   /* centra verticalmente */
    gap: 8px;              /* espaçamento entre ícone e texto */
    white-space: nowrap;   /* evita quebra indesejada */
    padding: 6px 8px;
}

.vocation-icon {
    width: 18px;           /* ajuste o tamanho do ícone aqui */
    height: 18px;
    flex: 0 0 18px;        /* não deixa o ícone encolher/expandir */
    display: inline-block;
    vertical-align: middle;
}
.vocation-text {
    line-height: 1;        /* evita desalinhamento em fontes grandes */
}
