@charset "utf-8";
/* CSS Document */

    /* Sayfa Başına Dön Butonu */
    #backToTop {
        display: none; /* Sayfa başındayken gizli */
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 99;
        font-size: 18px;
        border: none;
        outline: none;
        background: #27ae60; /* SVSLP Yeşili */
        color: white;
        cursor: pointer;
        padding: 15px;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
        width: 50px;
        height: 50px;
        line-height: 20px;
    }

    #backToTop:hover {
        background: #2c3e50; /* Hoverda Lacivert */
        transform: scale(1.1);
    }

    @media (max-width: 600px) {
        #backToTop { bottom: 20px; right: 20px; width: 45px; height: 45px; }
    }
