.tax-preset-group {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            margin: 0.5rem 0 1rem 0;
        }
        .preset-tax {
            background-color: #e9ecef;
            border: none;
            border-radius: 20px;
            padding: 0.25rem 0.8rem;
            font-size: 0.85rem;
            font-weight: 500;
            color: #1e466e;
            cursor: pointer;
            transition: 0.1s;
        }
        .preset-tax:hover {
            background-color: #cfd9e6;
            transform: scale(0.97);
        }
        .preset-note {
            font-size: 0.75rem;
            color: #6c757d;
            margin-top: 0.25rem;
        }
        .result-value-large {
            font-size: 2rem;
            font-weight: 700;
            color: #0a58ca;
        }
        .mode-toggle {
            background-color: #f1f3f5;
            border-radius: 50px;
            display: inline-flex;
            padding: 0.2rem;
            margin-bottom: 1.2rem;
        }
        .mode-option {
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            cursor: pointer;
            font-weight: 500;
            transition: 0.1s;
        }
        .mode-option.active {
            background-color: #0d6efd;
            color: white;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .tax-chart-container {
            max-width: 280px;
            margin: 0 auto;
        }
        .result-panel {
            background: #f8fafc;
            border-radius: 16px;
            padding: 1.2rem;
            margin-top: 1rem;
        }
        .insight-badge {
            font-size: 0.8rem;
            background: #eef2ff;
            display: inline-block;
            border-radius: 30px;
            padding: 0.2rem 0.7rem;
        }
        .disclaimer {
            background-color: #fff8e7;
            border-left: 4px solid #ffc107;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            font-size: 0.85rem;
        }
        .verification-badge {
            background-color: #e3f2fd;
            border-radius: 20px;
            padding: 0.2rem 0.7rem;
            font-size: 0.75rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .feedback-link {
            text-decoration: none;
            font-size: 0.85rem;
        }