/**
 * Estilos para Coongro Connector
 *
 * @package Coongro_Connector
 */

/* Wrapper del botón */
.coongro-connector-button-wrapper {
    margin: 20px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

/* Botón base */
.coongro-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Botón activo */
.coongro-button--active {
    background-color: #4f46e5;
    color: #ffffff;
}

.coongro-button--active:hover {
    background-color: #4338ca;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.coongro-button--active:active {
    transform: translateY(0);
}

/* Botón desactivado */
.coongro-button--disabled {
    background-color: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

/* Icono del botón */
.coongro-button__icon {
    font-size: 18px;
}

/* Mensaje de hint */
.coongro-button__hint {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 14px;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 480px) {
    .coongro-connector-button-wrapper {
        padding: 15px;
    }

    .coongro-button {
        width: 100%;
        padding: 14px 20px;
    }
}
