﻿@import url('https://fonts.googleapis.com/css?family=Poppins:400,600,700,900');

html, body {
    overflow-x: hidden;
    width: 100%;
	background-color: #f1f1f1 !important; /*yeni eklendi  vv */
}

* {
    max-width: 100%;
    box-sizing: border-box;
}


html, body {
    font-family: 'Roboto', sans-serif !important;
}


i[class^="la"],
i[class*=" la"] {
    font-family: 'Line Awesome Free' !important;
    font-weight: 900 !important;
    font-style: normal;
}

#search-popup {
    position: fixed;
    top: -300px;
    left: 0;
    width: 100%;
    min-height: 220px;
	background-color: #0175C0;
    transition: top 0.4s ease;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
    transition: top 0.4s ease, min-height 0.4s ease;
    overflow: hidden;
}

    #search-popup.active {
        top: 0;
    }

#close-search {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.search-inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.search-box-wrapper {
    position: relative;
    width: 50%;
}

#search-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 30px;
    border: none;
    outline: none;
    font-size: 16px;
}

#search-btn {
    padding: 12px 25px;
    border-radius: 20px;
    border: 2px solid white;
    color: white;
    font-weight: bold;
    cursor: pointer;
}


#autocomplete-list {
    position: relative;
    margin-top: 8px;
    width: 100%;
    background-color: white;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

    #autocomplete-list li {
        padding: 10px 15px;
        cursor: pointer;
    }

        #autocomplete-list li:hover {
            background-color: #eee;
        }

#navbar-nav .nav-link.active {
    background-color: #0077C8 !important;
    color: #fff !important;
    font-weight: bold;
}

