/* Estilos adicionais para o Hub de Ideias de Conteúdo */

/* Botão de adicionar tema flutuante */
.add-tema-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #D5B170;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.add-tema-button:hover {
    background-color: #c0a05c;
    transform: scale(1.1);
}

/* Indicador visual para temas manuais */
.card-ideia.manual {
    border: 2px solid #D5B170;
}

.card-ideia.manual::before {
    content: "Manual";
    position: absolute;
    top: -10px;
    right: 10px;
    background-color: #D5B170;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

/* Estilos para o botão de excluir */
.btn-excluir {
    background-color: #f44336;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-excluir:hover {
    background-color: #d32f2f;
}

/* Container de notificações */
#toastContainer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1100;
}

/* Responsividade para o botão flutuante */
@media (max-width: 576px) {
    .add-tema-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}
