/* =========================================================
   Panneau temporaire d’informations client
   ========================================================= */

.client-info-panel {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 9000;

    width: min(390px, calc(100vw - 28px));
    max-height: 45vh;
    padding: 14px;

    overflow: auto;

    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #cfdde8;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(16, 43, 86, 0.22);

    color: #102b56;
    font-size: 0.82rem;
}

.client-info-title {
    margin-bottom: 10px;

    color: #109c9b;
    font-size: 0.95rem;
    font-weight: 900;
}

.client-info-list {
    margin: 0;
}

.client-info-row {
    display: grid;
    grid-template-columns: 115px minmax(0, 1fr);
    gap: 10px;

    padding: 6px 0;
    border-top: 1px solid #edf2f6;
}

.client-info-row:first-child {
    border-top: none;
}

.client-info-row dt {
    color: #66778a;
    font-weight: 800;
}

.client-info-row dd {
    min-width: 0;
    margin: 0;

    overflow-wrap: anywhere;
    color: #102b56;
    font-weight: 700;
}

.client-info-user-agent dd {
    font-size: 0.75rem;
    font-weight: 500;
}

@media (max-width: 650px) {
    .client-info-panel {
        right: 8px;
        bottom: 8px;

        width: calc(100vw - 16px);
        max-height: 35vh;
    }

    .client-info-row {
        grid-template-columns: 100px minmax(0, 1fr);
    }
}