.enchant-item {
    transition: all 0.2s ease;
    cursor: pointer;
    border: 3px solid #4b5563;
    background: #374151;
    position: relative;
}

.enchant-item:hover {
    transform: scale(1.1);
    border-color: #86efac;
    z-index: 10;
}

.enchant-item.selected {
    border-color: #22c55e;
    background-color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.enchant-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    image-rendering: pixelated;
}

.result-bar {
    transition: width 0.5s ease;
}

.item-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(10, 1fr);
    gap: 4px;
    max-width: 400px;
}