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

}

.l2-enchants-rank-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-width: 700px;
    background: #150F07;
}

.l2-enchants-rank-table thead th {
    padding: 12px 8px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #bfa78a;
    border-bottom: 1px solid #3D2E21;
    background: #221912;
}

.l2-enchants-rank-table tbody td {
    padding: 12px 10px;
    border-bottom: 1px solid #3D2E21;
    background: #150F07;
    color: #e4d2bd;
    font-size: 14px;
}

.rank-row:hover {
    background: #221912;
}

/* Rank number */
.rank-number {
    font-size: 15px;
    font-weight: 600;
    color: #f0e4d2;
    text-align: center;
}

/* Character name */
.char-content {
    font-weight: 500;
    color: #f5e5cd;
    text-align: center;
}

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

.item-icon-enchant-container {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #221912;
    border-radius: 6px;
    border: 1px solid #3D2E21;
}

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

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

/* Enchant value */
.enchant-value {
    font-size: 14px;
    font-weight: 600;
    color: #f3e1bb;
    background: #221912;
    border-radius: 6px;
    padding: 5px 10px;
    text-align: center;
    border: 1px solid #3D2E21;
}

.l2-enchants-rank-table tbody tr {
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: default;
}


.l2-enchants-rank-table tbody tr:hover {
    background: #503d2d;
    /* Um tom médio da paleta */
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 1;
    position: relative;
}