
        /* Kurumsal Raporlar Sayfasına Özel Stiller */
        .custom-breadcrumb {
            background-color: #f5f7fa;
            padding: 25px 0;
            margin-bottom: 40px;
        }
        
        .breadcrumb-title {
            font-size: 2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .breadcrumb {
            background-color: transparent;
            padding: 0;
            margin-bottom: 0;
            font-size: 1.1rem;
        }
        
        .breadcrumb-item a {
            color: #3498db;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        
        .breadcrumb-item a:hover {
            color: #2980b9;
            text-decoration: underline;
        }
        
        .breadcrumb-item.active {
            color: #7f8c8d;
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            content: "→";
            color: #95a5a6;
            font-size: 1.2rem;
            padding: 0 10px;
        }
        
        /* Rapor Listesi Stilleri */
        .report-category-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2a4365;
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #3498db;
        }
        
        .report-item {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 1.25rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            border-left: 4px solid #3498db;
        }
        
        .report-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-left-color: #2980b9;
        }
        
        .report-title {
            font-size: 1.1rem;
            font-weight: 500;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }
        
        .report-meta {
            font-size: 0.85rem;
            color: #7f8c8d;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .report-date {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        
        .report-download {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.4rem 1rem;
            background-color: #3498db;
            color: white;
            border-radius: 4px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.2s;
            margin-top: 0.75rem;
        }
        
        .report-download:hover {
            background-color: #2980b9;
            color: white;
        }
        
        /* Filtreleme Alanı */
        .report-filters {
            background-color: #f8fafc;
            padding: 1.25rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        
        .filter-title {
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 1rem;
            color: #2c3e50;
        }
        
        .filter-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .filter-select {
            min-width: 180px;
            flex: 1;
        }
        
        /* Pagination */
        .pagination-container {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
        }
        
        .page-info {
            text-align: center;
            margin-top: 1rem;
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        
        /* Yükleniyor Animasyonu */
        .loading-spinner {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 200px;
        }
        
        .spinner-border {
            width: 3rem;
            height: 3rem;
            color: #3498db;
        }
        
        /* Kategori Renkleri */
        .category-faaliyet { border-left-color: #3498db; }
        .category-ic-kontrol { border-left-color: #e74c3c; }
        .category-mali { border-left-color: #2ecc71; }
        .category-stratejik { border-left-color: #f39c12; }
        .category-diger { border-left-color: #9b59b6; }
        
        /* Responsive */
        @media (max-width: 768px) {
            .filter-group {
                flex-direction: column;
            }
            
            .filter-select {
                width: 100%;
            }
        }