        /* Estilos para el botón */
        .submit-btn {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 10px 20px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        /* Estilo para el estado "Comentario Enviado" */
        .sent {
            background-color: #888;
            cursor: not-allowed;
        }

        /* Estilo para el estado de "Error en el comentario" */
        .error {
            background-color: #f44336; /* Color rojo */
            cursor: not-allowed;
        }