/**
 * Modern Tema Değiştirici Stilleri
 * Bootstrap buton uyumlu
 */

#theme-toggle-btn {
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    /* Alt çizgiyi kesin olarak kaldır */
    font-weight: 600;
    /* Yazıyı biraz kalınlaştır */
}

/* İkon hizalaması için */
#theme-toggle-btn i {
    font-size: 1rem;
    transition: transform 0.4s ease;
}

/* Tıklayınca ikon hafif dönsün */
#theme-toggle-btn:active i {
    transform: rotate(360deg);
}