.result-value-abv {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            letter-spacing: -0.02em;
        }
        .abv-meter {
            background-color: #e9ecef;
            border-radius: 20px;
            height: 20px;
            width: 100%;
            margin: 15px 0;
            overflow: hidden;
        }
        .abv-meter-fill {
            background: linear-gradient(90deg, #2c7da0, #61a5c2);
            width: 0%;
            height: 100%;
            border-radius: 20px;
            transition: width 0.4s ease;
        }
        .stat-card {
            background: #f8f9fc;
            border-left: 4px solid var(--primary-color);
            padding: 0.8rem 1rem;
            border-radius: 12px;
            margin: 1rem 0;
        }
        .formula-note {
            font-family: 'Courier New', monospace;
            background: #f1f3f5;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 0.9rem;
        }
        .example-badge {
            background: white;
            border: 1px solid #dee2e6;
            border-radius: 40px;
            padding: 5px 12px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        .example-badge:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        .disclaimer-text {
            font-size: 0.8rem;
            background: #fef4e8;
            border-left: 3px solid #f0ad4e;
        }
        .calc-icon {
            font-size: 2.2rem;
            color: var(--primary-color);
        }
        .custom-table th {
            background-color: #eef2f7;
        }
        .info-icon {
            color: #6c757d;
            margin-left: 6px;
            cursor: help;
        }
        .info-icon:hover {
            color: var(--primary-color);
        }
        .alert-info-tool {
            background-color: #e7f3fe;
            border-left: 4px solid #2196F3;
            font-size: 0.85rem;
        }