.dropdown-item {
    background-color: #ffffff;
    color: black;
}

.dropdown-item:hover {
    background-color: #0dcaf0;
    color: white;
}

.circle-icon {
    width: 30px;
    height: 30px;
    background-color: #dfe8ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
}

@media (max-width: 576px) {
    .dropdown-menu {
        max-width: 300px;
        font-size: 12px;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: auto !important;
        z-index: 1000;
    }

    .dropdown-item {
        white-space: nowrap;
    }
}

.dropdown-menu {
    width: 300px;
    position: absolute;
    z-index: 1000;

}