@charset "utf-8";
/* CSS Document */
.haber-etkilesim-kutusu {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 10px;
        font-family: sans-serif;
    }

    .etkilesim-buton {
        display: flex;
        align-items: center;
        cursor: pointer;
        padding: 8px 15px;
        border-radius: 20px;
        transition: background 0.3s;
        user-select: none; /* Metin seçmeyi engeller */
        background: #f0f0f0;
    }

    .etkilesim-buton:active {
        transform: scale(0.95);
    }

    .etkilesim-buton.active-like { background: #d4edda; color: #155724; }
    .etkilesim-buton.active-dislike { background: #f8d7da; color: #721c24; }

    .ikon { font-size: 1.2rem; margin-right: 8px; }
    .sayi { font-weight: bold; font-size: 1rem; }

    /* Mobil ve Tablet Uyumu */
    @media (max-width: 768px) {
        .ikon { font-size: 1.4rem; }
        .sayi { font-size: 1.1rem; }
        .etkilesim-buton { padding: 10px 20px; }
    }