@import url('theme.css');
.tierlist-board {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
}

.tier-row {
    display: flex;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    min-height: 100px;
}

.tier-label {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.tier-dropzone {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem;
    min-height: 100px;
    align-content: flex-start;
}

.champion-pool {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    min-height: 200px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-content: flex-start;
    max-height: 500px;
    overflow-y: auto;
}

.champ-icon-container {
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: grab;
    transition: transform 0.2s;
}

.champ-icon-container:hover {
    transform: scale(1.05);
}

.champ-icon-container:active {
    cursor: grabbing;
}

.champ-icon {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    border: 2px solid transparent;
    object-fit: cover;
}

.champ-name {
    font-size: 0.75rem;
    margin-top: 0.25rem;
    text-align: center;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.tierlist-board.locked .champ-icon-container {
    cursor: default;
}
.tierlist-board.locked .champ-icon-container:hover {
    transform: none;
}

/* Scrollbar for champion pool */
.champion-pool::-webkit-scrollbar {
    width: 8px;
}
.champion-pool::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.2);
}
.champion-pool::-webkit-scrollbar-thumb {
    background: var(--lime-main);
    border-radius: 4px;
}

/* Drag over states */
.tier-dropzone.drag-over {
    background: rgba(255, 255, 255, 0.05);
}
