﻿.has-children {
    position: relative;
}

    .has-children .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        min-width: 180px;
        z-index: 1000;
        display: none;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .has-children:hover .dropdown {
        display: block;
    }

.dropdown li {
    border-bottom: 1px solid #eee;
}

    .dropdown li:last-child {
        border-bottom: none;
    }

    .dropdown li a {
        display: block;
        padding: 10px 15px;
        color: #333 !important;
        text-decoration: none;
        font-size: 14px;
        transition: background-color 0.3s;
    }

        .dropdown li a:hover {
            background-color: #f8f9fa;
            color: #007bff !important;
        }

.test-link {
    position: relative;
}

    .test-link::after {
        font-size: 10px;
        margin-left: 5px;
        transition: transform 0.3s;
    }

.has-children:hover .test-link::after {
    transform: rotate(180deg);
}

/* Mobil için */
@media (max-width: 991px) {
    .has-children .dropdown {
        position: static;
        display: block;
        box-shadow: none;
        border: none;
        background: transparent;
        padding-left: 20px;
    }

    .has-children:hover .dropdown {
        display: block;
    }
}
