﻿
/* Genel görünüm */
.menuPanel {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    transition: all 0.3s ease-in-out;
}

/* Hover efekti panel */
.menuPanel:hover {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

/* Menü ikonları */
.menuPanel a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    color: #2E3192;
    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);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

    /* Hover'da ikon efekti */
    .menuPanel a:hover {
        color: white;
        background: linear-gradient(135deg, #2E3192, #1BFFFF);
        transform: scale(1.1);
        box-shadow: 0 4px 10px rgba(46, 49, 146, 0.4);
    }

    /* Tooltip benzeri title efekti */
    .menuPanel a[title]:hover::after {
        content: attr(title);
        position: absolute;
        right: 60px;
        background: rgba(46, 49, 146, 0.9);
        color: white;
        padding: 6px 10px;
        border-radius: 8px;
        font-size: 12px;
        white-space: nowrap;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        opacity: 1;
        transform: translateY(-50%);
    }

/* Geriye kalan küçük stiller */
.menuPanel i {
    pointer-events: none;
}

/* Küçük ekranlara uyum */
@media (max-width: 768px) {
    .menuPanel {
        flex-direction: row;
        bottom: 20px;
        top: auto;
        right: 50%;
        transform: translateX(50%);
        padding: 10px 16px;
    }

        .menuPanel a {
            width: 40px;
            height: 40px;
        }
}

