.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }
        .input-group-custom {
            margin-bottom: 1rem;
        }
        .deep-dive {
            margin: 1.8rem 0;
        }
        .deep-dive p {
            text-align: justify;
        }
        .unit-note {
            font-size: 0.9rem;
            color: #6c757d;
        }
        .coord-input {
            margin-bottom: 0.5rem;
        }
        .geometry-canvas {
            width: 100%;
            height: auto;
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-top: 1.5rem;
            display: block;
        }
        .canvas-container {
            text-align: center;
            margin-top: 1rem;
        }
        .legend {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 0.5rem 0;
            font-size: 0.9rem;
        }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 50%;
        }
        .legend-color.red {
            background-color: #dc3545;
        }
        .legend-color.blue {
            background-color: #0d6efd;
        }
        .legend-color.gray {
            background-color: #6c757d;
        }
        .legend-color.purple {
            background-color: #9b59b6;
        }
        .log-area {
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            background-color: #f8f9fa;
            border: 1px solid #ced4da;
            border-radius: 6px;
            padding: 1rem;
            width: 100%;
            min-height: 200px;
            resize: vertical;
            color: #1e1e2f;
        }
        .log-area:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(70, 130, 180, 0.25);
        }
        .stat-card {
            background: white;
            border-radius: 10px;
            padding: 1.2rem 1rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            border: 1px solid #e9ecef;
            text-align: center;
            height: 100%;
            transition: transform 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-2px);
        }
        .stat-number {
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1.2;
        }
        .stat-label {
            font-size: 0.9rem;
            color: #6c757d;
            margin-top: 0.25rem;
        }
        .stat-icon {
            font-size: 1.8rem;
            color: rgba(70, 130, 180, 0.3);
            margin-bottom: 0.5rem;
        }
        .table-log {
            font-size: 0.9rem;
        }
        .table-log th {
            background-color: #f1f5f9;
            font-weight: 600;
        }
        .badge-status {
            font-size: 0.8rem;
            padding: 0.3rem 0.6rem;
        }
        .status-2xx {
            background-color: #d4edda;
            color: #155724;
        }
        .status-3xx {
            background-color: #d1ecf1;
            color: #0c5460;
        }
        .status-4xx {
            background-color: #f8d7da;
            color: #721c24;
        }
        .status-5xx {
            background-color: #f5c6cb;
            color: #721c24;
        }
        .progress-thin {
            height: 6px;
            border-radius: 4px;
        }
        .top-list {
            list-style: none;
            padding-left: 0;
        }
        .top-list li {
            display: flex;
            justify-content: space-between;
            padding: 0.4rem 0;
            border-bottom: 1px solid #f1f3f5;
            font-size: 0.9rem;
        }
        .top-list li:last-child {
            border-bottom: none;
        }
        .top-list .count {
            font-weight: 600;
            color: var(--primary-color);
        }
        .method-badge {
            font-weight: 600;
            font-size: 0.8rem;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            background-color: #e9ecef;
            color: #1e1e2f;
        }
        .method-get {
            background-color: #d4edda;
            color: #155724;
        }
        .method-post {
            background-color: #cce5ff;
            color: #004085;
        }
        .method-put {
            background-color: #fff3cd;
            color: #856404;
        }
        .method-delete {
            background-color: #f8d7da;
            color: #721c24;
        }
        .method-head {
            background-color: #e2e3e5;
            color: #383d41;
        }
        .method-other {
            background-color: #f1f3f5;
            color: #495057;
        }
        .timestamp-badge {
            font-size: 0.75rem;
            color: #6c757d;
            font-family: 'Courier New', monospace;
        }
        .user-agent-trunc {
            max-width: 200px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: inline-block;
        }
        .ip-link {
            color: var(--primary-color);
            text-decoration: none;
        }
        .ip-link:hover {
            text-decoration: underline;
        }
        .dashboard-tabs .dashboard-tabs .empty-state {
            text-align: center;
            padding: 3rem 1rem;
            color: #6c757d;
        }
        .empty-state i {
            font-size: 3rem;
            color: #dee2e6;
            margin-bottom: 1rem;
        }
        .log-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        @media (max-width: 576px) {
            .stat-number {
                font-size: 1.8rem;
            }
            .log-area {
                min-height: 150px;
                font-size: 0.8rem;
            }
        }