/* Visualiser Dropdown Styles */
.visualiser-control {
    display: flex;
    align-items: center;
}

#visualiser-btn img {
    width: 40px;
    height: 40px;
    mix-blend-mode: multiply;
}

body.dark-mode #visualiser-btn img {
    filter: invert(1);
    mix-blend-mode: screen;
}

.dropdown-menu {
    position: absolute;
    top: 50px;
    left: 0;
    background-color: var(--bg-color);
    border: 2px solid var(--text-color);
    padding: 0.5rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    width: 180px;
    z-index: 200;
}

.dropdown-menu.show {
    display: flex;
}

.dropdown-item {
    font-family: var(--font-main);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    transition: background-color 0.2s, color 0.2s;
    text-transform: lowercase;
}

.dropdown-item:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.dropdown-item.active {
    font-weight: bold;
    text-decoration: underline;
}