.ip-result-card {
            background: white;
            border-radius: 8px;
            border: 1px solid #e9ecef;
            padding: 1.2rem;
            margin: 1rem 0;
        }
        .ip-detail-item {
            display: flex;
            justify-content: space-between;
            padding: 0.4rem 0;
            border-bottom: 1px dashed #f0f0f0;
        }
        .ip-detail-label {
            font-weight: 600;
            color: #495057;
        }
        .ip-detail-value {
            font-family: 'Courier New', monospace;
            background: #f8f9fa;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            color: #0d6efd;
        }
        .badge-proxy {
            background-color: #dc3545;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }
        .badge-host {
            background-color: #ffc107;
            color: #212529;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }
        .badge-clean {
            background-color: #28a745;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
        }
        #map {
            height: 320px;
            width: 100%;
            border-radius: 8px;
            border: 1px solid #ddd;
            margin-top: 15px;
            z-index: 1;
        }
        .map-legend {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 0.5rem 0;
        }
        .legend-marker {
            display: inline-block;
            width: 12px;
            height: 12px;
            background-color: #dc3545;
            border-radius: 50%;
            border: 2px solid white;
            box-shadow: 0 0 4px rgba(0,0,0,0.3);
        }
        .disclaimer-note {
            background-color: #fff3cd;
            border: 1px solid #ffeeba;
            color: #856404;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            margin: 1rem 0;
            font-size: 0.9rem;
        }
        .user-feedback {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 1rem;
            margin-top: 2rem;
            text-align: center;
        }
        .user-feedback a {
            text-decoration: none;
        }