.array-container {
    display: flex;
    gap: 8px;
    font-size: 1.2em;
}

.array-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #94a3b8;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    background-color: white;
}

.dimmed {
    opacity: 0.2;
}

.active {
    background-color: var(--unvisited);
}

.mid {
    background-color: var(--current);
    transform: scale(1.1);
}

.found {
    background-color: var(--visited);
    color: white;
    border-color: var(--visited);
}