.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }
        .input-group-custom {
            margin-bottom: 1rem;
        }
        .result-value.large {
            font-size: 2.6rem;
        }
        .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;
        }
        .macro-bar {
            display: flex;
            height: 24px;
            border-radius: 12px;
            overflow: hidden;
            margin: 0.5rem 0;
            background-color: #e9ecef;
        }
        .macro-segment {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 600;
            color: #fff;
            transition: width 0.3s ease;
        }
        .macro-segment.protein {
            background-color: #0d6efd;
        }
        .macro-segment.carbs {
            background-color: #198754;
        }
        .macro-segment.fat {
            background-color: #ffc107;
            color: #333;
        }
        .macro-legend {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            font-size: 0.9rem;
            margin: 0.5rem 0 1rem 0;
        }
        .macro-legend-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .macro-dot {
            width: 14px;
            height: 14px;
            border-radius: 4px;
        }
        .macro-dot.protein {
            background-color: #0d6efd;
        }
        .macro-dot.carbs {
            background-color: #198754;
        }
        .macro-dot.fat {
            background-color: #ffc107;
        }
        .result-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 1.2rem;
            margin: 0.8rem 0;
            border-left: 4px solid var(--primary-color);
        }
        .result-card h6 {
            font-weight: 600;
            color: var(--accent-color);
        }
        .timeline-bar {
            position: relative;
            height: 8px;
            background-color: #e9ecef;
            border-radius: 4px;
            margin: 1rem 0;
            overflow: hidden;
        }
        .timeline-fill {
            height: 100%;
            background: linear-gradient(90deg, #0d6efd, #198754);
            border-radius: 4px;
            transition: width 0.6s ease;
        }
        .bmi-scale {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            color: #6c757d;
            margin-top: 0.2rem;
        }
        .bmi-marker {
            position: absolute;
            top: -6px;
            width: 4px;
            height: 20px;
            background-color: #dc3545;
            border-radius: 2px;
            transition: left 0.6s ease;
        }
        .bmi-container {
            position: relative;
            padding: 0.5rem 0;
        }
        .glow-card {
            background: linear-gradient(145deg, #ffffff, #f5f7fa);
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1.2;
        }
        .stat-label {
            font-size: 0.9rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .progress-ring {
            display: inline-block;
            position: relative;
        }
        .progress-ring svg {
            transform: rotate(-90deg);
        }
        .ring-bg {
            stroke: #e9ecef;
        }
        .ring-fg {
            stroke: var(--primary-color);
            stroke-linecap: round;
            transition: stroke-dashoffset 0.6s ease;
        }
        .ring-label {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-weight: 700;
            font-size: 1.1rem;
        }
        @media (max-width: 768px) {
            .stat-number {
                font-size: 1.6rem;
            }
            .result-value.large {
                font-size: 1.8rem;
            }
        }
        .more-weeks-note {
            font-style: italic;
            color: #6c757d;
            margin-top: 0.5rem;
        }