/**
 * 3D Secure Processing Page Styles
 */
body.pbl-3ds-processing {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 100vh !important;
    flex-direction: column;
}

.pbl-processing-container {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pbl-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #e0e0e0;
    border-top-color: #3498db;
    border-radius: 50%;
    animation: pbl-spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes pbl-spin {
    to { transform: rotate(360deg); }
}

.pbl-processing-text {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

.pbl-processing-subtext {
    color: #666;
    font-size: 14px;
}

.pbl-hidden-form {
    display: none;
}