:root {
            --primary-color: #2c7da0;
            --secondary-color: #a9d6e5;
            --accent-color: #01497c;
            --light-gray: #f8f9fa;
            --border-color: #eaeaea;
            --text-color: #333;
            --text-muted: #6c757d;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --sport-green: #198754;
            --sport-orange: #fd7e14;
            --sport-purple: #6f42c1;
            --sport-red: #dc3545;
        }
         .page-header {
            background: linear-gradient(135deg, rgba(169, 214, 229, 0.4) 0%, rgba(44, 125, 160, 0.4) 100%);
            padding: 1.5rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(44, 125, 160, 0.2);
            position: relative;
            overflow: hidden;color: var(--text-color);
        }
        .breadcrumb {
            background-color: transparent;
            padding: 0.5rem 0;
            margin-bottom: 0.5rem;
        }
        .breadcrumb-item a {
            color: var(--text-muted);
            text-decoration: none;
        }
        .breadcrumb-item.active {
            color: var(--text-color);
        }
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(44, 125, 160, 0.15);
        }
        .financial-summary {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .financial-item {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            text-align: center;
        }
        .financial-item h4 {
            font-size: 1rem;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
        }
        .financial-item .value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1.2;
        }
        .financial-item .detail {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }
        .sport-info-box {
            background-color: rgba(111, 66, 193, 0.05);
            border-left: 3px solid var(--sport-purple);
            padding: 1rem;
            border-radius: 0 4px 4px 0;
            margin: 1.5rem 0;
        }
        .related-name {
            font-weight: 500;
            margin-bottom: 0.25rem;
        }
        .related-desc {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .pie-chart-container {
            position: relative;
            height: 280px;
            width: 100%;
            margin: 1.5rem 0;
        }
        .rating-excellent { color: var(--sport-green); font-weight: 700; }
        .rating-good { color: #2c7da0; font-weight: 700; }
        .rating-average { color: var(--sport-orange); font-weight: 700; }
        .rating-poor { color: var(--sport-red); font-weight: 700; }
        .invalid-input {
            border: 2px solid var(--sport-red) !important;
            background-color: #fff0f0;
        }
        .input-hint {
            font-size: 0.8rem;
            color: var(--text-muted);
        }