/* ═══ Web Information Manager — standalone page ═══ */
.wim-main {
    min-height: 60vh;
    padding: 2.5rem 0 4rem;
    display: flex;
    justify-content: center;
}
.wim-container {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wim-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

.wim-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .9rem;
    padding: 1.4rem 1.5rem;
    background: linear-gradient(135deg, #0c1a35, #1a4db8);
    color: #fff;
    text-align: center;
}

.wim-card-header-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
}

.wim-card-header-title { font-size: 1.1rem; font-weight: 700; }

.wim-card-body { padding: 0; }

.wim-table {
    width: 100%;
    border-collapse: collapse;
}
.wim-table tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background .15s;
}
.wim-table tr:last-child { border-bottom: none; }
.wim-table tr:hover { background: #fafbfc; }

.wim-field {
    width: 42%;
    padding: 1.1rem 1.5rem;
    background: #f8fafc;
    border-right: 1px solid #f1f5f9;
    font-size: .8rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .04em;
    vertical-align: middle;
}

.wim-value {
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    vertical-align: middle;
}

.wim-email {
    font-family: monospace;
    font-size: .92rem !important;
    font-weight: 500 !important;
    color: #1a5c38 !important;
}

@media (max-width: 560px) {
    .wim-field { width: 40%; padding: .9rem 1rem; font-size: .72rem; }
    .wim-value { padding: .9rem 1rem; font-size: .9rem; }
}
