/* Extracted inline styles from /monte-carlo.html (H5) */
.gradient-text {
            background: linear-gradient(135deg, #1d4ed8 0%, #ec4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .glass-card {
            background: rgba(255,255,255,0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 1rem;
        }
        .input-field {
            width: 100%;
            padding: 0.75rem 1rem;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 0.5rem;
            color: #fff;
            font-size: 0.875rem;
        }
        .input-field:focus {
            outline: none;
            border-color: #1d4ed8;
            box-shadow: 0 0 0 2px rgba(29, 78, 216, 0.2);
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.875rem 2rem;
            background: linear-gradient(135deg, #1d4ed8, #ec4899);
            border-radius: 0.5rem;
            font-weight: 600;
            color: #fff;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(29, 78, 216, 0.4);
        }
        .metric-card {
            background: rgba(29, 78, 216, 0.1);
            border: 1px solid rgba(29, 78, 216, 0.2);
            border-radius: 0.75rem;
            padding: 1.25rem;
            text-align: center;
        }
        .metric-value {
            font-size: 1.75rem;
            font-weight: 700;
            color: #1d4ed8;
        }
        .section-divider {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
            margin-top: 1.5rem;
        }
        .progress-bar {
            height: 8px;
            background: rgba(255,255,255,0.1);
            border-radius: 4px;
            overflow: hidden;
        }
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #1d4ed8, #ec4899);
            border-radius: 4px;
            transition: width 0.3s ease;
        }
        .distribution-bar {
            display: flex;
            height: 120px;
            align-items: flex-end;
            gap: 2px;
            padding: 0 1rem;
        }
        .dist-bar {
            flex: 1;
            background: linear-gradient(to top, #1d4ed8, #ec4899);
            border-radius: 2px 2px 0 0;
            min-height: 4px;
            transition: height 0.3s ease;
        }

/* Button group spacing */
.flex-1 + .flex-1 { margin-left: 0; }
