/* index.css - Ana Sayfa Stilleri */

/* Tema Değiştirici Wrapper */
.theme-switch-wrapper {
    z-index: 1050;
}

/* Başarı Modal İkon Alanı */
.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #d1e7dd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* İkon Kalp Animasyonu */
.icon-heart {
    font-size: 16px;
    padding: 0 3px;
    color: #d0021b;
    display: inline-block;
    animation: pound 0.35s infinite alternate;
}

@keyframes pound {
    to {
        transform: scale(1.2);
    }
}
