/* 🌐 Genel Modal Stili */
.kon-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.popular-cities {
    margin-top: 20px;
}

.popular-title {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
    color: #007782;
}

.popular-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.popular-list li {
    cursor: pointer;
    font-size: 15px;
    color: #333;
    padding-left: 22px;
    position: relative;
}

.popular-list li::before {
    content: "🗺️";
    position: absolute;
    left: 0;
    top: 0;
}

.popular-list li:hover {
    text-decoration: underline;
    color: #007782;
}


/* 🧱 Modal İçeriği */
.kon-modal-content {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

/* ❌ Kapatma Butonu */
.kon-close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* 🖼 Logo */
.kon-modal-logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 150px;
    height: auto;
}

/* 🔍 Arama Kutusu */
.kon-search-box {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    text-align: center;
}

.kon-search-box input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

/* 📍 Tüm Türkiye Linki */
.kon-all-turkey {
    display: inline-block;
    margin-top: 10px;
    font-size: 16px;
    color: #007782;
    text-decoration: none;
    cursor: pointer;
}

.kon-all-turkey:hover {
    text-decoration: underline;
}

/* 📌 Buton */
.kon-search-box button {
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    background-color: #007782;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.kon-search-box button:hover {
    background-color: #006d6d;
}

/* 🔽 Sonuçlar */
.kon-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1001;
    text-align: left;
}

.kon-search-results div {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.kon-search-results div:hover {
    background-color: #f0f0f0;
}

/* ✅ Responsive - Tablet */
@media (max-width: 768px) {
    .kon-modal-content {
        width: 95%;
        padding: 20px;
    }

    .kon-search-box input {
        font-size: 15px;
        padding: 9px;
    }

    .kon-search-box button {
        font-size: 15px;
        padding: 9px;
    }
}

/* ✅ Responsive - Mobil */
@media (max-width: 480px) {
    .kon-modal-content {
        width: 100%;
        max-width: none;
        border-radius: 0;
        height: auto;
        padding: 18px 15px;
    }

    .kon-modal-logo {
        max-width: 120px;
        margin-bottom: 15px;
    }

    .kon-close-modal {
        top: 8px;
        right: 10px;
        font-size: 22px;
    }

    .kon-search-box input {
        font-size: 14px;
        padding: 8px;
    }

    .kon-search-box button {
        font-size: 14px;
        padding: 9px;
    }

    .kon-search-results div {
        font-size: 14px;
    }
}