.growth-equation {
            font-size: 1.2rem;
            padding: 15px;
            background-color: rgba(46, 125, 50, 0.05);
            border-left: 4px solid #2e7d32;
            border-radius: 4px;
            margin: 15px 0;
        }
        .med-box {
            background-color: #e8f5e9;
            border-left: 3px solid #2e7d32;
            padding: 1rem;
            border-radius: 0 4px 4px 0;
            margin: 1.5rem 0;
        }
        .result-card {
            background: #f1f8e9;
            border-radius: 16px;
            padding: 1.5rem;
            margin: 1rem 0;
            border: 1px solid #c5e1a5;
        }
        .prediction-value {
            font-size: 2.6rem;
            font-weight: 700;
            color: #1b5e20;
            line-height: 1.2;
        }
        .unit-label {
            font-size: 1rem;
            color: #558b2f;
        }
        .info-row {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px dashed #c5e1a5;
            padding: 0.5rem 0;
        }
        .med-disclaimer {
            background-color: #f3e5f5;
            border-left: 4px solid #7b1fa2;
            padding: 1rem;
            border-radius: 4px;
            font-style: italic;
        }
        .growth-chart-container {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 1rem;
            border: 1px solid #cfd8dc;
            margin: 1.5rem 0;
        }
        .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: 20px;
            height: 12px;
            border-radius: 2px;
        }
        .legend-color.blue { background-color: #1e88e5; }
        .legend-color.green { background-color: #43a047; }
        .boundary-warning {
            background-color: #fff3e0;
            border: 1px solid #ffb74d;
            color: #e65100;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            margin: 1rem 0;
            font-size: 0.9rem;
        }