.potion-item {
    background: #f3f4f6;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.potion-item:hover {
    background: #e5e7eb;
    transform: translateX(5px);
}

.potion-item.selected {
    background: #7ead49;
    border-color: #6a9739;
}

.potion-item.selected .potion-name,
.potion-item.selected .potion-description {
    color: white;
}

.potion-icon-container {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 6px;
    padding: 4px;
}

.potion-icon {
    width: 32px;
    height: 32px;
    image-rendering: pixelated;
}

.potion-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 16px;
}

.potion-description {
    font-size: 13px;
    color: #6b7280;
    margin-top: 2px;
}

.selected-effects {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
        
.effect-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #7ead49;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    margin: 5px;
    font-size: 14px;
    font-weight: 500;
}

.effect-badge img {
    width: 24px;
    height: 24px;
    image-rendering: pixelated;
}

.remove-effect {
    cursor: pointer;
    margin-left: 5px;
    opacity: 0.8;
}

.remove-effect:hover {
    opacity: 1;
}
        