.dropdown-hover {
        position: relative;
        display: inline-flex; /* D-flex yerine inline-flex daha iyi */
        align-items: center;
        cursor: pointer;
    }

    
    .dropdown-hover .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: 0;
        z-index: 1000;
        min-width: 10rem;
        background: white;
        border: 1px solid #ccc;
        padding: 0.5rem 0;
        box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
    }

    .dropdown-hover:hover .dropdown-menu,
    .dropdown-menu:hover {
        display: block;
    }

    .dropdown-toggle {
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    .dropdown-item {
        display: block;
        width: 100%;
        padding: 0.25rem 1.5rem;
        clear: both;
        font-weight: 400;
        color: #212529;
        text-align: inherit;
        white-space: nowrap;
        background-color: transparent;
        border: 0;
        text-decoration: none;
    }
    .dropdown-item:hover {
        background-color: #f8f9fa;
        color: #16181b;
    }

    @media (max-width: 1200px){
        .dropdown-hover .dropdown-menu {
        display: none!important;
        }
    }
