/* =================================================================== */
/* 페이지 특정 CSS (IP 조회용)                                        */
/* =================================================================== */

.ip-lookup-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--rg-spacing-large);
    margin-top: var(--rg-spacing-large);
}

.result-card {
    flex: 1 1 400px; /* 기본 너비 400px, 늘어날 수 있음 */
}

.map-card {
    flex: 1 1 500px; /* 기본 너비 500px, 늘어날 수 있음 */
    min-height: 400px;
}

#map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--rg-border-radius);
    box-shadow: var(--rg-shadow-sm);
    background-color: var(--rg-color-disabled);
}

.recent-ips {
    margin-top: var(--rg-spacing-large);
}

.rg_list {
    list-style: none;
    padding: 0;
    border: 1px solid var(--rg-color-border);
    border-radius: var(--rg-border-radius);
    overflow: hidden;
}

.rg_list li {
    padding: 12px var(--rg-spacing);
    border-bottom: 1px solid var(--rg-color-border);
}
.rg_list li:last-child {
    border-bottom: none;
}
.rg_list a {
    text-decoration: none;
    color: var(--rg-color-primary-dark);
    font-weight: 500;
}
.rg_list a:hover {
    text-decoration: underline;
}