/*
 * LiveChat - Self-hosted PHP live-chat solution
 *
 * LiveChat is a self-hosted PHP live-chat solution, deployable on cPanel
 * and compliant with Quebec Loi 25.
 *
 * Author      : Astral Internet
 * Contributor : Daniel Berthiaume
 *
 * ----
 * File description
 * GeoIP module styles, kept inside the module for full third-party independence. Imported by the
 * geoip-test Stimulus controller so it ships with the module rather than living in the core form CSS.
 */

.geoip-test-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
    margin: 12px 0;
    max-width: 420px;
}

.geoip-test-row .lc-input {
    flex: 1 1 auto;
}

.geoip-test-result {
    margin: 12px 0 0;
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 4px 16px;
}

.geoip-test-result dt {
    color: var(--lc-muted);
}

.geoip-test-result dd {
    margin: 0;
    font-weight: 600;
}

.geoip-test-empty,
.geoip-test-source {
    margin: 12px 0 0;
    color: var(--lc-muted);
    font-size: var(--lc-text-sm);
}

.geoip-test-source + .geoip-test-result {
    margin-top: 6px;
}
