/* Contenedor de la lista de tareas */
.listaTareasSweet {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Cada tarjeta de tarea */
.listaTareasSweet > div {
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid #ddd;
    cursor: pointer;
}



/* Botón Cerrar flotante */
#btnCerrarFlotante {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 40px;
    border-radius: 0 20px 20px 0;
    border: none;
    background-color: red;
    color: white;
    font-weight: bold;
    font-size: 16px;
    z-index: 9999;
}

/* Barra superior flotante (+ y −) */
.barra-flotante {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 9999;
}

/* Botones + y − flotantes */
#btnAgregarTarea,
#btnEliminarTarea {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 25px;
    color: white;
    font-weight: bold;
    
}

#btnAgregarTarea {
    background-color: #1E8449;
}

#btnEliminarTarea {
    background-color: #922B21;
}
