@import '_content/FocusBooksFrontShare/FocusBooksFrontShare.3sces6dlsf.bundle.scp.css';

/* /Components/Pages/AuthCallback.razor.rz.scp.css */
/* AuthCallback.razor.css - OAuth 콜백 수신 페이지 스타일
 * Google OAuth 완료 후 리다이렉트되는 페이지. 처리 중 스피너 또는 오류 메시지를 표시.
 * 영향: AuthCallback.razor의 _error 필드 분기에 따라 .callback-loading 또는 .callback-error를 표시. */

.callback-page[b-bacw8h3ycq] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 50%, #2a2a2a 100%);
    color: #fff;
    font-family: Arial, sans-serif;
}

.callback-loading[b-bacw8h3ycq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.spinner[b-bacw8h3ycq] {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-b-bacw8h3ycq 0.8s linear infinite;
}

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

.loading-text[b-bacw8h3ycq] {
    font-size: 16px;
    color: #ccc;
}

.callback-error[b-bacw8h3ycq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding: 32px;
}

.error-text[b-bacw8h3ycq] {
    font-size: 15px;
    color: #fca5a5;
    max-width: 300px;
}

.retry-btn[b-bacw8h3ycq] {
    margin-top: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.retry-btn:hover[b-bacw8h3ycq] {
    background: rgba(255, 255, 255, 0.25);
}
/* /Components/Pages/PaymentCancel.razor.rz.scp.css */
/* PaymentCancel.razor.css - PaymentSuccess.razor.css 와 동일한 스타일 */

.payment-result-page[b-lw0wcjmool] {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 24px;
}

.result-card[b-lw0wcjmool] {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    max-width: 360px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.result-icon[b-lw0wcjmool] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cancel-icon[b-lw0wcjmool] {
    background: #FFF0EF;
    color: #FF3B30;
}

.result-title[b-lw0wcjmool] {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.result-desc[b-lw0wcjmool] {
    font-size: 14px;
    color: #8E8E93;
    margin: 0;
    line-height: 1.6;
}

.result-btn[b-lw0wcjmool] {
    background: #1A1A1A;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    width: 100%;
}

.result-btn:active[b-lw0wcjmool] {
    opacity: 0.85;
}
/* /Components/Pages/PaymentNiceSuccess.razor.rz.scp.css */
/* PaymentNiceSuccess.razor.css — 나이스페이 결제 결과 페이지 스타일 (앱 다크 테마) */

.payment-result-page[b-d59agbt6e7] {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    padding: 24px;
}

.result-card[b-d59agbt6e7] {
    background: #3a3a3a;
    border-radius: 20px;
    padding: 40px 28px 32px;
    max-width: 340px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* ── 로딩 상태 ── */
.confirming-wrap[b-d59agbt6e7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.confirming-text[b-d59agbt6e7] {
    font-size: 14px;
    color: #AAA;
    margin: 0;
}

/* ── 아이콘 ── */
.result-icon[b-d59agbt6e7] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.success-icon[b-d59agbt6e7] {
    background: rgba(76, 175, 80, 0.2);
    color: #81C784;
}

.cancel-icon[b-d59agbt6e7] {
    background: rgba(244, 67, 54, 0.2);
    color: #EF5350;
}

/* ── 텍스트 ── */
.result-title[b-d59agbt6e7] {
    font-size: 19px;
    font-weight: 700;
    color: #F0F0F0;
    margin: 0;
    line-height: 1.3;
}

.result-desc[b-d59agbt6e7] {
    font-size: 13px;
    color: #9E9E9E;
    margin: 0;
    line-height: 1.7;
}

/* ── 버튼 ── */
.result-btn[b-d59agbt6e7] {
    background: #4a90d9;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
    width: 100%;
    letter-spacing: -0.2px;
}

.result-btn:active[b-d59agbt6e7] {
    background: #357abd;
}

.result-btn-secondary[b-d59agbt6e7] {
    background: transparent;
    color: #9E9E9E;
    border: 1px solid #555;
    border-radius: 12px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
}

.result-btn-secondary:active[b-d59agbt6e7] {
    background: rgba(255,255,255,0.05);
}
/* /Components/Pages/PaymentSuccess.razor.rz.scp.css */
/* PaymentSuccess.razor.css / PaymentCancel.razor.css 공통 스타일 — 앱 다크 테마 */

.payment-result-page[b-ki43rhqs31] {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    padding: 24px;
}

.result-card[b-ki43rhqs31] {
    background: #3a3a3a;
    border-radius: 20px;
    padding: 40px 28px 32px;
    max-width: 340px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* ── 로딩 상태 ── */
.confirming-wrap[b-ki43rhqs31] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.confirming-text[b-ki43rhqs31] {
    font-size: 14px;
    color: #AAA;
    margin: 0;
}

/* ── 아이콘 ── */
.result-icon[b-ki43rhqs31] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.success-icon[b-ki43rhqs31] {
    background: rgba(76, 175, 80, 0.2);
    color: #81C784;
}

.cancel-icon[b-ki43rhqs31] {
    background: rgba(244, 67, 54, 0.2);
    color: #EF5350;
}

/* ── 텍스트 ── */
.result-title[b-ki43rhqs31] {
    font-size: 19px;
    font-weight: 700;
    color: #F0F0F0;
    margin: 0;
    line-height: 1.3;
}

.result-desc[b-ki43rhqs31] {
    font-size: 13px;
    color: #9E9E9E;
    margin: 0;
    line-height: 1.7;
}

/* ── 버튼 ── */
.result-btn[b-ki43rhqs31] {
    background: #4a90d9;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
    width: 100%;
    letter-spacing: -0.2px;
}

.result-btn:active[b-ki43rhqs31] {
    background: #357abd;
}

.result-btn-secondary[b-ki43rhqs31] {
    background: transparent;
    color: #9E9E9E;
    border: 1px solid #555;
    border-radius: 12px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
}

.result-btn-secondary:active[b-ki43rhqs31] {
    background: rgba(255,255,255,0.05);
}
