.pb2b-wait-container {
    max-width: 480px;
    margin: 60px auto;
    padding: 40px 32px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.pb2b-wait-icon {
    font-size: 48px;
    color: #1976d2;
    margin-bottom: 16px;
}

.pb2b-wait-title {
    font-size: 20px;
    font-weight: 600;
    color: #1976d2;
    margin-bottom: 8px;
}

.pb2b-wait-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 24px;
}

.pb2b-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
}

.pb2b-spinner {
    font-size: 48px;
    color: #1976d2;
    animation: pb2b-spin 2s linear infinite;
}

@keyframes pb2b-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
