@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');

.approval-page {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: transparent;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: #1a1a1a;
    box-sizing: border-box;
}

.approval-container {
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.approval-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 999px;
    background: #fff7ed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: approval-float 3s ease-in-out infinite;
}

.approval-shield {
    width: 64px;
    height: 64px;
    color: #f97316;
}

.approval-clock {
    position: absolute;
    right: 6px;
    bottom: 6px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.12);
}

.approval-clock svg {
    width: 18px;
    height: 18px;
    color: #94a3b8;
}

.approval-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.approval-card h1 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.approval-card h1 span {
    color: #ff5a00;
}

.approval-card p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.95rem;
}

.approval-card strong {
    color: #1f2937;
}

.approval-info {
    margin-top: 1.5rem;
    background: #f8fafc;
    border-radius: 1.2rem;
    padding: 1rem;
    text-align: left;
}

.approval-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: #64748b;
    font-size: 0.85rem;
}

.approval-info li::before {
    content: "?";
    color: #f97316;
    margin-right: 0.5rem;
}

.approval-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.approval-refresh {
    border: none;
    padding: 0.9rem 1rem;
    border-radius: 1.2rem;
    background: #1f2937;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.2);
}

.approval-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1rem;
    border-radius: 1.2rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-weight: 700;
    text-decoration: none;
}

.approval-back {
    border: none;
    background: transparent;
    color: #94a3b8;
    font-size: 0.75rem;
    text-decoration: underline;
}

.approval-footer {
    margin-top: 2rem;
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

@keyframes approval-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}
