/* Navbar Arama - Desktop */
.search-results-navbar {
    position: absolute;
    width: 100%;
    background: #2d3142;
    border: 1px solid #444;
    border-radius: 12px;
    margin-top: 8px;
    max-height: 350px;
    overflow-y: auto;
    z-index: 1050;
    display: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.search-results-navbar a {
    display: block;
    padding: 12px 18px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid #444;
    transition: background 0.2s ease;
}

.search-results-navbar a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.search-results-navbar a:last-child {
    border-bottom: none;
}
