/**
 * Royal Mercado Pago CSS
 * Estilos específicos para o plugin de Mercado Pago
 */

.royal-mercado-pago-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 0.5rem;
    transition: all 0.15s ease-in-out;
    background-color: #009ee3;
    color: #ffffff;
    border: 1px solid transparent;
    cursor: pointer;
}

.royal-mercado-pago-button:hover {
    background-color: #007eb5;
}

.royal-mercado-pago-button:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #009ee3;
}

.royal-mercado-pago-button svg {
    margin-right: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
}

.royal-mercado-pago-status-approved {
    color: #10b981;
}

.royal-mercado-pago-status-pending {
    color: #f59e0b;
}

.royal-mercado-pago-status-rejected {
    color: #ef4444;
} 