/* =============================================
   Google One Verify Widget Styles
   ============================================= */

/* Container - matches bento glass-box style */
.verify-widget {
    --ring-light-1: #6b9ece;
    --ring-light-2: #9fd7e5;
    --ring-light-3: #f3c76a;
    --ring-trail-base: linear-gradient(90deg, rgba(107, 158, 206, 0.18) 0%, rgba(159, 215, 229, 0.08) 42%, rgba(255, 255, 255, 0.02) 100%);
    --ring-trail-fill: linear-gradient(90deg, #6b9ece 0%, #9fd7e5 58%, #fbbf24 100%);
    --ring-fill-shadow: 0 0 18px rgba(107, 158, 206, 0.22);
    --widget-top-base: linear-gradient(90deg,
            rgba(107, 158, 206, 0.56) 0%,
            rgba(107, 158, 206, 0.84) 18%,
            rgba(159, 215, 229, 0.96) 38%,
            rgba(243, 199, 106, 0.5) 54%,
            rgba(159, 215, 229, 0.9) 72%,
            rgba(107, 158, 206, 0.66) 100%);
    --widget-top-fill: linear-gradient(90deg, #6b9ece 0%, #9fd7e5 58%, #fbbf24 100%);
    --widget-top-shadow: 0 0 14px rgba(107, 158, 206, 0.16);
    --widget-top-base-shadow: 0 0 14px rgba(107, 158, 206, 0.2), 0 0 22px rgba(159, 215, 229, 0.08);
    --widget-top-opacity: 0.72;
    --widget-top-flow-duration: 7.8s;
    --trail-sheen-opacity: 0.9;
    --trail-sheen-duration: 7.2s;
    --trail-sheen-width: 34%;
    --trail-sheen-blur: 14px;
    --trail-sheen-bg: linear-gradient(90deg,
            rgba(107, 158, 206, 0) 0%,
            rgba(107, 158, 206, 0.2) 18%,
            rgba(159, 215, 229, 0.96) 46%,
            rgba(243, 199, 106, 0.58) 72%,
            rgba(243, 199, 106, 0) 100%);
    --trail-aura-opacity: 0.58;
    --trail-aura-glow: radial-gradient(circle at 16% 50%, rgba(107, 158, 206, 0.22) 0%, rgba(107, 158, 206, 0.04) 34%, transparent 70%),
        radial-gradient(circle at 34% 50%, rgba(159, 215, 229, 0.18) 0%, rgba(159, 215, 229, 0.03) 36%, transparent 68%),
        radial-gradient(circle at 56% 50%, rgba(243, 199, 106, 0.14) 0%, rgba(243, 199, 106, 0.02) 38%, transparent 70%);
    --verify-progress: 0%;
    --verify-progress-opacity: 0;
    --orbit-progress-opacity: 0;
    --widget-progress-opacity: var(--verify-progress-opacity);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.verify-widget-topline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.verify-widget-topline::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    width: 132px;
    height: 44px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: var(--trail-aura-glow);
    filter: blur(18px);
    opacity: var(--trail-aura-opacity);
    animation: orbitAuraBreath 6.6s ease-in-out infinite;
    pointer-events: none;
}

.verify-orbit-trail {
    position: relative;
    flex: 1;
    height: 1px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--ring-trail-base);
}

.verify-orbit-trail::before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(var(--trail-sheen-width) * -1);
    width: var(--trail-sheen-width);
    height: 18px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: var(--trail-sheen-bg);
    filter: blur(var(--trail-sheen-blur));
    opacity: var(--trail-sheen-opacity);
    animation: homepodSweep var(--trail-sheen-duration) cubic-bezier(0.42, 0.06, 0.24, 0.99) infinite;
    pointer-events: none;
}

.verify-orbit-trail::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--verify-progress);
    border-radius: inherit;
    background: var(--ring-trail-fill);
    box-shadow: var(--ring-fill-shadow);
    opacity: var(--orbit-progress-opacity);
    transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

@keyframes homepodSweep {
    0% {
        transform: translate(-14%, -50%) scaleX(0.86);
        opacity: 0;
    }

    12% {
        opacity: calc(var(--trail-sheen-opacity) * 0.72);
    }

    40% {
        transform: translate(122%, -50%) scaleX(1.06);
        opacity: var(--trail-sheen-opacity);
    }

    72% {
        transform: translate(212%, -50%) scaleX(0.94);
        opacity: calc(var(--trail-sheen-opacity) * 0.38);
    }

    100% {
        transform: translate(298%, -50%) scaleX(0.88);
        opacity: 0;
    }
}

@keyframes orbitAuraBreath {
    0%,
    100% {
        opacity: calc(var(--trail-aura-opacity) * 0.76);
        transform: translateY(-50%) scale(0.96);
    }

    50% {
        opacity: var(--trail-aura-opacity);
        transform: translateY(-50%) scale(1.04);
    }
}

@keyframes topAuroraFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Decorative Top Bar */
.verify-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--widget-top-base);
    background-size: 220% 100%;
    background-position: 0% 50%;
    box-shadow: var(--widget-top-base-shadow);
    opacity: var(--widget-top-opacity);
    z-index: 1;
    animation: topAuroraFlow var(--widget-top-flow-duration) linear infinite;
    transition: opacity 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.verify-widget::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: var(--verify-progress);
    height: 4px;
    background: var(--widget-top-fill);
    box-shadow: var(--widget-top-shadow);
    opacity: var(--widget-progress-opacity);
    z-index: 2;
    pointer-events: none;
    transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.verify-widget.ring-armed {
    --ring-light-1: #75b6f2;
    --ring-light-2: #9fe6f5;
    --ring-light-3: #34c759;
    --ring-trail-base: linear-gradient(90deg, rgba(117, 182, 242, 0.24) 0%, rgba(159, 230, 245, 0.12) 42%, rgba(52, 199, 89, 0.08) 100%);
    --ring-trail-fill: linear-gradient(90deg, #75b6f2 0%, #9fe6f5 56%, #34c759 100%);
    --ring-fill-shadow: 0 0 20px rgba(117, 182, 242, 0.24), 0 0 26px rgba(52, 199, 89, 0.09);
    --widget-top-base: linear-gradient(90deg,
            rgba(117, 182, 242, 0.66) 0%,
            rgba(117, 182, 242, 0.92) 18%,
            rgba(159, 230, 245, 0.96) 38%,
            rgba(52, 199, 89, 0.54) 54%,
            rgba(159, 230, 245, 0.92) 72%,
            rgba(117, 182, 242, 0.76) 100%);
    --widget-top-fill: linear-gradient(90deg, #75b6f2 0%, #9fe6f5 56%, #34c759 100%);
    --widget-top-shadow: 0 0 16px rgba(117, 182, 242, 0.2), 0 0 24px rgba(52, 199, 89, 0.1);
    --widget-top-base-shadow: 0 0 16px rgba(117, 182, 242, 0.22), 0 0 24px rgba(159, 230, 245, 0.1);
    --widget-top-opacity: 0.84;
    --widget-top-flow-duration: 5.8s;
    --trail-sheen-opacity: 0.96;
    --trail-sheen-duration: 5.9s;
    --trail-sheen-width: 38%;
    --trail-sheen-blur: 15px;
    --trail-sheen-bg: linear-gradient(90deg,
            rgba(117, 182, 242, 0) 0%,
            rgba(117, 182, 242, 0.24) 18%,
            rgba(159, 230, 245, 0.98) 46%,
            rgba(52, 199, 89, 0.6) 72%,
            rgba(52, 199, 89, 0) 100%);
    --trail-aura-opacity: 0.64;
    --trail-aura-glow: radial-gradient(circle at 16% 50%, rgba(117, 182, 242, 0.24) 0%, rgba(117, 182, 242, 0.05) 34%, transparent 70%),
        radial-gradient(circle at 34% 50%, rgba(159, 230, 245, 0.2) 0%, rgba(159, 230, 245, 0.035) 36%, transparent 68%),
        radial-gradient(circle at 56% 50%, rgba(52, 199, 89, 0.2) 0%, rgba(52, 199, 89, 0.035) 38%, transparent 70%);
    --verify-progress-opacity: 0;
}

.verify-widget.ring-running {
    --ring-light-1: #7eb7ea;
    --ring-light-2: #9fe9f6;
    --ring-light-3: #f8cf6e;
    --ring-trail-base: linear-gradient(90deg, rgba(107, 158, 206, 0.18) 0%, rgba(159, 215, 229, 0.08) 42%, rgba(255, 255, 255, 0.02) 100%);
    --ring-trail-fill: linear-gradient(90deg, #6b9ece 0%, #77d9f4 60%, #fbbf24 100%);
    --ring-fill-shadow: 0 0 24px rgba(119, 217, 244, 0.22), 0 0 30px rgba(251, 191, 36, 0.12);
    --widget-top-base: linear-gradient(90deg, rgba(67, 96, 125, 0.92) 0%, rgba(47, 70, 92, 0.92) 52%, rgba(255, 255, 255, 0.08) 100%);
    --widget-top-fill: linear-gradient(90deg, #6b9ece 0%, #77d9f4 60%, #fbbf24 100%);
    --widget-top-shadow: 0 0 22px rgba(119, 217, 244, 0.22), 0 0 28px rgba(251, 191, 36, 0.12);
    --widget-top-base-shadow: 0 0 18px rgba(119, 217, 244, 0.18), 0 0 30px rgba(251, 191, 36, 0.08);
    --widget-top-opacity: 0.78;
    --widget-top-flow-duration: 5.8s;
    --trail-aura-opacity: 0.58;
    --trail-sheen-opacity: 0.9;
    --trail-sheen-duration: 7.2s;
    --trail-sheen-width: 34%;
    --trail-sheen-blur: 14px;
    --orbit-progress-opacity: 0;
    --widget-progress-opacity: var(--verify-progress-opacity);
}

.verify-widget.ring-success {
    --ring-light-1: #22c55e;
    --ring-light-2: #4ade80;
    --ring-light-3: #86efac;
    --ring-trail-fill: linear-gradient(90deg, #16a34a 0%, #22c55e 54%, #4ade80 100%);
    --ring-fill-shadow: 0 0 22px rgba(34, 197, 94, 0.24);
    --widget-top-fill: linear-gradient(90deg, #16a34a 0%, #22c55e 54%, #4ade80 100%);
    --widget-top-shadow: 0 0 22px rgba(34, 197, 94, 0.28);
    --trail-aura-opacity: 0.12;
    --orbit-progress-opacity: 0;
    --widget-progress-opacity: var(--verify-progress-opacity);
    --trail-sheen-opacity: 0;
}

.verify-widget.ring-error {
    --ring-light-1: #ef4444;
    --ring-light-2: #fb7185;
    --ring-light-3: #f59e0b;
    --ring-trail-fill: linear-gradient(90deg, #ef4444 0%, #fb7185 60%, #f59e0b 100%);
    --ring-fill-shadow: 0 0 22px rgba(251, 113, 133, 0.24);
    --widget-top-fill: linear-gradient(90deg, #ef4444 0%, #fb7185 60%, #f59e0b 100%);
    --widget-top-shadow: 0 0 22px rgba(251, 113, 133, 0.28);
    --trail-aura-opacity: 0.12;
    --orbit-progress-opacity: 0;
    --widget-progress-opacity: var(--verify-progress-opacity);
    --trail-sheen-opacity: 0;
}

/* Success State Controls */
.verify-widget.success-pulse::before,
.verify-widget.error-pulse::before {
    opacity: 0.16;
}

.verify-widget.success-pulse::after {
    animation: successBlink 2.4s ease-in-out forwards;
}

.verify-widget.error-pulse::after {
    animation: errorBlink 2.4s ease-in-out forwards;
}

@keyframes errorBlink {
    0% {
        opacity: 0.18;
    }

    18% {
        opacity: 1;
        box-shadow: var(--widget-top-shadow);
    }

    42% {
        opacity: 0.2;
    }

    62% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes successBlink {
    0% {
        opacity: 0.18;
    }

    18% {
        opacity: 1;
        box-shadow: var(--widget-top-shadow);
    }

    42% {
        opacity: 0.2;
    }

    62% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.verify-widget:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

/* Header */
.verify-widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.verify-widget-icon {
    width: 48px;
    height: 48px;
    /* Starry Blue Gradient (from Admin Studio) */
    background: linear-gradient(135deg, #6b9ece 0%, #5a8cba 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    /* Matching blue shadow */
    box-shadow: 0 4px 10px rgba(107, 158, 206, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.verify-widget-icon svg {
    width: 24px;
    height: 24px;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.verify-widget-title {
    flex: 1;
}

.verify-widget-title h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.verify-widget-title p {
    margin: 4px 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Balance Display */
.verify-balance {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #fbbf24;
    cursor: pointer;
}

.verify-balance i {
    font-size: 0.85rem;
}

/* Quota Display (1key remaining) */
.verify-quota {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(107, 158, 206, 0.14);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #9fd7e5;
    border: 1px solid rgba(107, 158, 206, 0.26);
}

.verify-quota i {
    font-size: 0.85rem;
}

.verify-quota #verifyQuotaValue {
    font-weight: 600;
    color: #6b9ece;
}

.verify-quota.warning {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

.verify-quota.warning #verifyQuotaValue {
    color: #fbbf24;
}

.verify-quota.danger {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
    animation: pulse 1.5s infinite;
}

.verify-quota.danger #verifyQuotaValue {
    color: #ef4444;
}

/* Input Area */
.verify-input-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.verify-form-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 18px;
    align-items: start;
}

.verify-form-main {
    gap: 16px;
}

.verify-guide-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(10, 15, 24, 0.92) 0%, rgba(8, 13, 20, 0.84) 100%),
        linear-gradient(135deg, rgba(107, 158, 206, 0.14), rgba(52, 199, 89, 0.08));
    border: 1px solid rgba(107, 158, 206, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 18px 40px rgba(0, 0, 0, 0.18);
}

.verify-guide-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(107, 158, 206, 0.62), rgba(159, 215, 229, 0.28), rgba(52, 199, 89, 0.18));
    opacity: 0.8;
}

.verify-guide-card.is-engagement-focus,
.verify-history-card.is-engagement-focus {
    animation: verify-guide-engagement-focus 2.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes verify-guide-engagement-focus {
    0% {
        box-shadow:
            0 0 0 0 rgba(107, 158, 206, 0.42),
            inset 0 1px 0 rgba(255, 255, 255, 0.03),
            0 18px 40px rgba(0, 0, 0, 0.18);
    }

    34% {
        box-shadow:
            0 0 0 8px rgba(107, 158, 206, 0.18),
            0 0 0 18px rgba(52, 199, 89, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.05),
            0 22px 54px rgba(31, 82, 128, 0.22);
    }

    100% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.03),
            0 18px 40px rgba(0, 0, 0, 0.18);
    }
}

.verify-guide-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.verify-guide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(107, 158, 206, 0.12);
    border: 1px solid rgba(107, 158, 206, 0.18);
    color: #b7dff7;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.verify-guide-badge i {
    color: #f3c76a;
}

.verify-guide-head h4 {
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.35;
    color: #f8fbff;
}

.verify-guide-head p {
    margin: 0;
    font-size: 0.87rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.verify-guide-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.verify-guide-section-title {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(191, 227, 249, 0.72);
    text-transform: uppercase;
}

.verify-guide-list,
.verify-guide-note-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.verify-guide-item,
.verify-guide-note {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 14px 13px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.verify-guide-item-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #f8fbff;
}

.verify-guide-item-body {
    font-size: 0.84rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.verify-guide-link {
    color: #9fd7e5;
    text-decoration: none;
    margin-left: 6px;
    white-space: nowrap;
}

.verify-guide-link-inline {
    margin-left: 0;
}

.verify-guide-link:hover,
.verify-guide-link:focus-visible {
    color: #d1f5ff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.verify-guide-link:focus-visible {
    outline: none;
}

.verify-guide-note {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.verify-guide-note i {
    width: 16px;
    margin-top: 2px;
    color: #9fd7e5;
    flex-shrink: 0;
}

.verify-guide-note:nth-child(2) i {
    color: #34c759;
}

.verify-guide-note:nth-child(3) i {
    color: #f3c76a;
}

.verify-guide-note-success i {
    width: 16px;
    height: auto;
    margin-top: 2px;
    display: inline-block;
    color: #f3c76a;
    filter: drop-shadow(0 0 8px rgba(243, 199, 106, 0.14));
}

.verify-guide-note-privacy {
    gap: 12px;
    background:
        linear-gradient(180deg, rgba(11, 18, 28, 0.92) 0%, rgba(9, 14, 24, 0.88) 100%);
    border: 1px solid rgba(107, 158, 206, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 14px 24px rgba(4, 8, 15, 0.2);
}

.verify-guide-note-shield {
    width: 16px;
    height: 18px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    filter: drop-shadow(0 0 8px rgba(115, 180, 217, 0.14));
}

.verify-guide-note-shield svg {
    display: block;
    width: 16px;
    height: 18px;
}

.verify-guide-note-privacy-body {
    font-size: 0.84rem;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.78);
}

.verify-guide-note > span {
    font-size: 0.83rem;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.74);
}

.verify-form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.verify-field-label {
    font-size: 0.98rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.01em;
}

.verify-field-label em {
    color: #fca5a5;
    font-style: normal;
}

.verify-input {
    width: 100%;
    padding: 16px 18px;
    background: rgba(7, 11, 20, 0.5);
    border: 1.5px solid rgba(107, 158, 206, 0.2);
    border-radius: 16px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.verify-password-shell {
    position: relative;
    display: flex;
    align-items: center;
}

.verify-password-shell .verify-input {
    padding-right: 58px;
}

.verify-password-toggle {
    position: absolute;
    right: 12px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.58);
    cursor: pointer;
    transition: all 0.22s ease;
    z-index: 1;
}

.verify-password-shell:focus-within .verify-password-toggle,
.verify-password-toggle:hover {
    color: #9fd7e5;
    border-color: rgba(107, 158, 206, 0.28);
    background: rgba(107, 158, 206, 0.12);
}

.verify-password-toggle:focus-visible {
    outline: none;
    color: #9fd7e5;
    border-color: rgba(107, 158, 206, 0.34);
    box-shadow: 0 0 0 3px rgba(107, 158, 206, 0.14);
}

.verify-password-toggle i {
    font-size: 0.95rem;
    pointer-events: none;
}

.verify-widget input.verify-input:focus,
.verify-widget input.verify-input:focus-visible {
    outline: none;
    border-color: rgba(107, 158, 206, 0.72) !important;
    background: rgba(5, 9, 17, 0.72);
    box-shadow: 0 0 0 4px rgba(107, 158, 206, 0.12) !important;
}

.verify-widget input.verify-input:-webkit-autofill,
.verify-widget input.verify-input:-webkit-autofill:hover,
.verify-widget input.verify-input:-webkit-autofill:focus,
.verify-widget input.verify-input:-webkit-autofill:focus-visible {
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff;
    border-color: rgba(107, 158, 206, 0.72) !important;
    -webkit-box-shadow:
        0 0 0 1000px rgba(5, 9, 17, 0.72) inset,
        0 0 0 4px rgba(107, 158, 206, 0.12) !important;
    box-shadow:
        0 0 0 1000px rgba(5, 9, 17, 0.72) inset,
        0 0 0 4px rgba(107, 158, 206, 0.12) !important;
}

.verify-input::placeholder,
.verify-input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    letter-spacing: 0.02em !important;
}

.verify-form-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.verify-mode-selector {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.verify-mode-selector--single {
    grid-template-columns: minmax(0, 1fr);
}

.verify-mode-option {
    position: relative;
    display: block;
    cursor: pointer;
}

.verify-mode-option input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.verify-mode-option__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 92px;
    padding: 14px 15px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
}

.verify-mode-option__title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
}

.verify-mode-option__meta {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.82rem;
    line-height: 1.45;
}

.verify-mode-option:hover .verify-mode-option__body {
    border-color: rgba(107, 158, 206, 0.28);
    background: rgba(107, 158, 206, 0.08);
    transform: translateY(-1px);
}

.verify-mode-option input:checked+.verify-mode-option__body {
    border-color: rgba(107, 158, 206, 0.58);
    background: linear-gradient(180deg, rgba(107, 158, 206, 0.18) 0%, rgba(19, 34, 54, 0.92) 100%);
    box-shadow: 0 14px 36px rgba(10, 18, 31, 0.28), 0 0 0 1px rgba(107, 158, 206, 0.16) inset;
}

.verify-mode-option--accent input:checked+.verify-mode-option__body {
    border-color: rgba(249, 146, 55, 0.52);
    background: linear-gradient(180deg, rgba(249, 146, 55, 0.18) 0%, rgba(36, 22, 11, 0.92) 100%);
    box-shadow: 0 14px 36px rgba(24, 14, 8, 0.32), 0 0 0 1px rgba(249, 146, 55, 0.18) inset;
}

.verify-mode-note {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.83rem;
    line-height: 1.55;
}

.verify-priority-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.verify-priority-pill:hover {
    border-color: rgba(107, 158, 206, 0.24);
    background: rgba(107, 158, 206, 0.1);
}

.verify-priority-pill input {
    appearance: none;
    width: 16px;
    height: 16px;
    margin: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.2s ease;
}

.verify-priority-pill input:checked {
    background: #6b9ece;
    border-color: rgba(107, 158, 206, 0.9);
    box-shadow: 0 0 14px rgba(107, 158, 206, 0.4);
}

.verify-priority-pill input:checked::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 999px;
    background: #ffffff;
}

/* Submit Button */
.verify-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    /* Starry Blue Gradient */
    background: linear-gradient(135deg, #6b9ece 0%, #5a8cba 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verify-form-actions {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    gap: 14px;
}

.verify-reset-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(239, 116, 122, 0.34);
    background:
        linear-gradient(180deg, rgba(65, 18, 25, 0.96) 0%, rgba(40, 11, 16, 0.92) 100%);
    color: rgba(255, 235, 238, 0.94);
    font-size: 0.96rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 10px 22px rgba(39, 9, 14, 0.22);
    transition: all 0.25s ease;
}

.verify-reset-btn i {
    color: #ff9ea4;
}

.verify-reset-btn:hover {
    border-color: rgba(255, 145, 151, 0.48);
    background:
        linear-gradient(180deg, rgba(82, 23, 31, 0.98) 0%, rgba(51, 14, 20, 0.94) 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 12px 28px rgba(57, 13, 20, 0.28);
}

.verify-reset-btn:hover i {
    color: #ffd6d9;
}

.verify-reset-btn:active {
    transform: translateY(0);
}

.verify-reset-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.verify-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 158, 206, 0.4);
}

.verify-submit-btn:active {
    transform: translateY(0);
}

.verify-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.verify-submit-btn.verify-submit-btn--maintenance {
    background: rgba(239, 68, 68, 0.3);
    border: 1px solid rgba(239, 68, 68, 0.5);
    box-shadow: none;
}

.verify-submit-btn.verify-submit-btn--maintenance:hover,
.verify-submit-btn.verify-submit-btn--maintenance:active {
    transform: none;
    box-shadow: none;
}

.verify-submit-btn .spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Cancel Button */
.verify-cancel-btn {
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    color: #fca5a5;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verify-cancel-btn:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

.verify-cancel-btn:active {
    transform: translateY(0);
}

/* Price Info */
.verify-price-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.verify-form-price {
    margin-top: 0;
    justify-content: flex-end;
    padding: 0;
}

.verify-price-info .price {
    color: #fbbf24;
    font-weight: 600;
}

.verify-price-info .per-price {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 4px;
}

/* Result Area */
.verify-result {
    margin-top: 16px;
    padding: 16px;
    border-radius: 12px;
    display: none;
}

.verify-result.show {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.verify-result.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.verify-result.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.verify-result.pending {
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.verify-result-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.verify-result-title {
    font-weight: 600;
    font-size: 1rem;
}

.verify-result.success .verify-result-title {
    color: #22c55e;
}

.verify-result.error .verify-result-title {
    color: #ef4444;
}

.verify-result.pending .verify-result-title {
    color: #fbbf24;
}

.verify-result-message {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* History Link */
.verify-history-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.verify-history-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Login Prompt */
.verify-login-prompt {
    text-align: center;
    padding: 20px;
}

.verify-login-prompt p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.7);
}

.verify-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    /* Starry Blue Gradient */
    background: linear-gradient(135deg, #6b9ece 0%, #5a8cba 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verify-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 158, 206, 0.4);
}

/* Batch Results Panel */
.verify-batch-results {
    box-sizing: border-box;
    margin-top: 0;
    padding: 0 16px;
    background: rgba(0, 0, 0, 0);
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
        max-height 0.42s ease,
        margin-top 0.28s ease,
        padding 0.28s ease,
        opacity 0.28s ease,
        transform 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease;
}

.verify-batch-results.show {
    margin-top: 10px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
    max-height: 350px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    overscroll-behavior-x: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.verify-batch-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.verify-batch-results-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verify-batch-progress {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.verify-batch-progress .current {
    color: #6b9ece;
    font-weight: 600;
}

/* Individual Result Item */
.verify-result-item {
    display: block;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 8px;
    animation: fadeInUp 0.3s ease;
}

.verify-result-item:last-child {
    margin-bottom: 0;
}

.verify-result-item.success {
    border-left: 3px solid #22c55e;
}

.verify-result-item.error {
    border-left: 3px solid #ef4444;
}

.verify-result-item.pending {
    border-left: 3px solid #fbbf24;
}

.verify-result-item.processing {
    border-left: 3px solid #6b9ece;
    background: rgba(107, 158, 206, 0.12);
}

.verify-result-item.info {
    border-left: 3px solid #60a5fa;
    background: rgba(96, 165, 250, 0.1);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.verify-result-item-content {
    min-width: 0;
}

.verify-result-item-id {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.verify-result-item-message {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.verify-result-item.processing .verify-result-item-message {
    color: #9fd7e5;
}

.verify-result-link-row {
    margin-top: 8px;
}

.verify-result-link {
    color: #93c5fd;
    text-decoration: none;
    word-break: break-all;
}

.verify-result-link:hover {
    color: #bfdbfe;
    text-decoration: underline;
}

.verify-result-subtle {
    margin-top: 6px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}

/* Summary Stats */
.verify-batch-summary {
    display: flex;
    gap: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-top: 12px;
}

.verify-batch-summary[hidden] {
    display: none !important;
}

.verify-batch-stat {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-size: 0.85rem;
}

.verify-batch-stat.success {
    color: #22c55e;
}

.verify-batch-stat.error {
    color: #ef4444;
}

.verify-batch-stat.cancelled {
    color: rgba(255, 255, 255, 0.5);
}

.verify-batch-stat.total {
    color: rgba(255, 255, 255, 0.7);
}

/* Scrollbar for results */
.verify-batch-results::-webkit-scrollbar {
    width: 6px;
}

.verify-batch-results::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.verify-batch-results::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.verify-batch-results::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 960px) {
    .verify-form-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .verify-widget {
        padding: 18px;
    }

    .verify-widget-topline {
        margin-bottom: 14px;
    }

    .verify-widget-header {
        flex-wrap: wrap;
    }

    .verify-header-right {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .verify-form-meta {
        flex-direction: column;
        align-items: stretch;
    }

    .verify-mode-selector {
        grid-template-columns: 1fr;
    }

    .verify-guide-card {
        padding: 16px;
    }

    .verify-priority-pill {
        width: 100%;
        justify-content: center;
    }

    .verify-form-price {
        justify-content: flex-start;
    }

    .verify-form-actions {
        grid-template-columns: 1fr;
    }

    .verify-batch-results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .verify-history-item {
        flex-wrap: wrap;
        gap: 4px;
    }

    .verify-history-item-id {
        width: 100%;
    }
}

/* =============================================
   Header Right Area
   ============================================= */
.verify-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* API Quota Badge */
.verify-api-quota {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(107, 158, 206, 0.12);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #9fd7e5;
    border: 1px solid rgba(107, 158, 206, 0.25);
    font-weight: 600;
}

.verify-api-quota-value {
    font-variant-numeric: tabular-nums;
}

.verify-api-quota-meta {
    font-size: 0.78rem;
    opacity: 0.78;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.verify-api-quota i {
    font-size: 0.85rem;
}

.verify-api-quota--unknown {
    color: #9fd7e5;
}

.verify-api-quota--ok {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.verify-api-quota--warning {
    background: rgba(243, 156, 18, 0.16);
    border-color: rgba(243, 156, 18, 0.32);
    color: #f39c12;
}

.verify-api-quota--danger {
    background: rgba(231, 76, 60, 0.16);
    border-color: rgba(231, 76, 60, 0.34);
    color: #e74c3c;
}

/* Quota Warning Bar */
.verify-quota-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    color: #fca5a5;
    font-size: 0.85rem;
    margin-bottom: 12px;
    animation: fadeInUp 0.3s ease;
}

.verify-quota-warning[hidden] {
    display: none !important;
}

.verify-quota-warning[data-tone="warning"] {
    background: rgba(243, 156, 18, 0.14);
    border-color: rgba(243, 156, 18, 0.3);
    color: #f7c878;
}

.verify-quota-warning i {
    color: #ef4444;
    font-size: 1rem;
}

.verify-quota-warning[data-tone="warning"] i {
    color: #f39c12;
}

.verify-quota-warning__text {
    flex: 1;
    min-width: 0;
}

.verify-quota-warning__action {
    flex-shrink: 0;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #fff3d6;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.verify-quota-warning__action:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

/* =============================================
   Verification History Card (Standalone)
   ============================================= */
.verify-history-card {
    margin-top: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease 0.1s both;
}

.verify-history-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.verify-history-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.verify-history-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.verify-history-title i {
    color: #9fd7e5;
}

.verify-history-refresh {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px 10px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.verify-history-refresh:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* History Actions Group */
.verify-history-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.verify-history-export {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px 10px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.verify-history-export:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* History List */
.verify-history-list {
    max-height: 280px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    overscroll-behavior-x: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.verify-history-list::-webkit-scrollbar {
    width: 4px;
}

.verify-history-list::-webkit-scrollbar-track {
    background: transparent;
}

.verify-history-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.verify-history-loading,
.verify-history-empty {
    text-align: center;
    padding: 24px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.verify-history-empty i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 8px;
    opacity: 0.5;
}

/* History Item Row */
.verify-history-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 4px;
    font-size: 0.8rem;
    transition: background 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
}

.verify-history-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.verify-history-item-time {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    white-space: nowrap;
    min-width: 80px;
}

.verify-history-item-main {
    flex: 1;
    min-width: 0;
}

.verify-history-item-id {
    color: rgba(255, 255, 255, 0.6);
    font-family: monospace;
    font-size: 0.72rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s ease;
}

.verify-history-item-id:hover {
    color: rgba(255, 255, 255, 0.9);
}

.verify-history-item-id--copied {
    color: #22c55e;
}

.verify-history-item-message {
    margin-top: 4px;
    font-size: 0.75rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.48);
    word-break: break-all;
}

.verify-history-link-text {
    color: #93c5fd;
    text-decoration: none;
}

.verify-history-link-text:hover {
    color: #bfdbfe;
    text-decoration: underline;
}

.verify-history-item-status {
    white-space: nowrap;
    font-weight: 500;
    min-width: 60px;
    text-align: center;
}

.verify-history-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.verify-history-item.success .verify-history-item-status {
    color: #22c55e;
}

.verify-history-item.error .verify-history-item-status {
    color: #ef4444;
}

.verify-history-item.cancelled .verify-history-item-status {
    color: rgba(255, 255, 255, 0.4);
}

.verify-history-item.processing .verify-history-item-status {
    color: #6b9ece;
}

.verify-history-item-cost {
    color: #fbbf24;
    font-weight: 600;
    min-width: 40px;
    text-align: right;
    font-size: 0.75rem;
}

.verify-copy-fallback {
    position: fixed;
    opacity: 0;
    pointer-events: none;
    inset: 0 auto auto 0;
}
