/**
 * Global Geri Butonu Stilleri
 */

.global-back-button {
    position: fixed;
    bottom: 80px;
    left: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.global-back-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.global-back-button:active {
    transform: scale(0.95);
}

/* Mobil için ayarlamalar */
@media (max-width: 768px) {
    .global-back-button {
        bottom: 70px;
        left: 15px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* Tablet için */
@media (min-width: 769px) and (max-width: 1024px) {
    .global-back-button {
        bottom: 75px;
        left: 18px;
    }
}

/* Dark mode desteği */
@media (prefers-color-scheme: dark) {
    .global-back-button {
        background: rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.15);
    }
    
    .global-back-button:hover {
        background: rgba(0, 0, 0, 0.5);
    }
}

/* Animasyon */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.global-back-button {
    animation: slideInLeft 0.3s ease-out;
}
