﻿
.sim-ou-nao-toggle {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-check {
    display: none;
}

.toggle-option {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.toggle-label {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.btn-like, .btn-dislike {
    font-size: 2rem;
    padding: 0.5rem;
    border-radius: 0.75rem;
    border: 2px solid transparent;
    background-color: #e9ecef;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

    /* Hover */
    .btn-like:hover,
    .btn-dislike:hover {
        background-color: #ced4da;
    }

/* Ativo (selecionado) */
.btn-check:checked + .btn-like {
    background-color: #198754; /* verde */
    color: white;
    border-color: #198754;
}

.btn-check:checked + .btn-dislike {
    background-color: #dc3545; /* vermelho */
    color: white;
    border-color: #dc3545;
}

@media (max-width: 576px) {
    .sim-ou-nao-toggle {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-like,
    .btn-dislike {
        font-size: 1.5rem;
        padding: 1rem;
        flex: 1 1 45%;
        text-align: center;
    }

    .toggle-option {
        width: 100%;
        max-width: 150px;
    }

    .toggle-label {
        font-size: 0.8rem;
    }
}    