.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    min-width: 10rem;
    background-color: white;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 0.25rem;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
}

.dropdown-menu.show {
    display: block;
}