﻿/* --- Kültür seçici panel --- */
.cultureListDiv {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 10px 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    transition: all 0.3s ease-in-out;
}

    .cultureListDiv:hover {
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
        transform: translateY(-2px);
    }

    /* --- Bayrak ikonları --- */
    .cultureListDiv a {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        overflow: hidden;
        background: linear-gradient(145deg, #f3f3f3, #ffffff);
        box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1), -2px -2px 6px rgba(255, 255, 255, 0.9);
        transition: all 0.25s ease-in-out;
        text-decoration: none;
    }

        /* --- Hover efekti --- */
        .cultureListDiv a:hover {
            transform: scale(1.15);
            box-shadow: 0 4px 12px rgba(46, 49, 146, 0.4);
            background: linear-gradient(135deg, #2E3192, #1BFFFF);
        }

        /* --- Bayrak görüntüsü --- */
        .cultureListDiv a img {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.9);
            transition: all 0.25s ease-in-out;
        }

        .cultureListDiv a:hover img {
            border-color: white;
        }

        /* --- Tooltip görünümü --- */
        .cultureListDiv a[title]:hover::after {
            content: attr(title);
            position: absolute;
            bottom: -38px;
            background: rgba(46, 49, 146, 0.9);
            color: white;
            padding: 4px 10px;
            border-radius: 8px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 1;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        }

/* --- Küçük ekran uyumu --- */
@media (max-width: 768px) {
    .cultureListDiv {
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        gap: 8px;
        padding: 8px 12px;
    }
}
