/* Estilos para o frontend público - atualmente não utilizados */
.wr-redirect-loading {
    text-align: center;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
}

.wr-redirect-loading h2 {
    color: #25d366;
    margin-bottom: 20px;
}

.wr-redirect-loading p {
    color: #666;
    margin-bottom: 30px;
}

.wr-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #25d366;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}