.l2-enchants-rank-container {
    margin: 20px 0;
    overflow-x: auto;
    background: #111;
    border-radius: 8px;
    padding: 10px;
    color: #fff;
}

.l2-enchants-rank-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    min-width: 700px;
    background: #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
}

/* Cabeçalho da tabela */
.l2-enchants-rank-table thead th {
    padding: 15px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #000;
    color: #fff;
    border-bottom: 2px solid #333;
}

.l2-enchants-rank-table tbody td {
    padding: 12px 10px;
    border-bottom: 1px solid #333;
    background: #1a1a1a;
    vertical-align: middle;
    color: #ddd;
}

.rank-row:nth-child(even) {
    background: #121212;
}

.rank-row:hover {
    background: #222;
    transition: all 0.3s ease;
}

/* Coluna Rank */
.rank-number {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

/* Coluna Character */
.char-content {
    font-weight: 600;
    color: #f5f5f5;
    text-align: center;
}

/* Coluna Item */
.item-display {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
}

.item-icon-enchant-container {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 4px;
    border: 1px solid #444;
}

.item-icon-enchant {
    width: 32px !important;
    height: 32px !important;
    object-fit: contain;
    border-radius: 4px;
}

.item-name {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    word-break: break-word;
}

/* Coluna Enchant */
.enchant-value {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    padding: 6px 12px;
    background: #000;
    border: 1px solid #666;
    border-radius: 6px;
    text-align: center;
    min-width: 50px;
}