/* Extracted verbatim from
   application/views/admin/preverification/dashboard.php.
   The legacy view carried these rules inline; lifted into a file so the
   React page renders identically. Do not restyle - this IS the theme. */

.udev {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.udev-card {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border: 1px solid #e3e6ea;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .06);
    padding: 48px 40px;
    text-align: center;
}

.udev-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #eff3fa;
    color: #2a5298;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

/* Slow, quiet rotation — this sits on screen a long time. */
.udev-icon .fa {
    animation: udev-spin 6s linear infinite;
}

@keyframes udev-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .udev-icon .fa { animation: none; }
}

.udev-card h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1a2130;
    margin: 0 0 10px;
}

.udev-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 auto;
    max-width: 380px;
}

.udev-tag {
    display: inline-block;
    margin-bottom: 20px;
    padding: 5px 12px;
    border-radius: 20px;
    background: #fdf3e6;
    color: #b45309;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.udev-actions {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #e3e6ea;
}

.udev-actions a {
    display: inline-block;
    margin: 0 6px;
    font-size: 13px;
    color: #2a5298;
    text-decoration: none;
}

.udev-actions a:hover {
    text-decoration: underline;
}
