
        /* Kurumsal Dökümanlar 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;
        }
        
        /* Müdürlük Listesi Stilleri */
        .mudurluk-item {
            border: 1px solid #e9ecef;
            border-radius: 8px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }
        
        .mudurluk-item:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }
        
        .mudurluk-header {
            background-color: #f8f9fa;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        
        .mudurluk-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 0;
        }
        
        .tum-dokumanlar-btn {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            transition: all 0.2s;
        }
        
        .tum-dokumanlar-btn:hover {
            background-color: #2980b9;
        }
        
        .tum-dokumanlar-btn i {
            margin-left: 5px;
        }
        
        .mudurluk-content {
            display: none;
            padding: 20px;
            background-color: white;
        }
        
        .ozet-text {
            color: #555;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .dokuman-listesi {
            margin-bottom: 30px;
        }
        
        .dokuman-list-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #3498db;
        }
        
        .dokuman-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }
        
        .dokuman-item:last-child {
            border-bottom: none;
        }
        
        .dokuman-name {
            color: #2c3e50;
            flex: 1;
        }
        
        .dokuman-download {
            color: #3498db;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.2s;
        }
        
        .dokuman-download:hover {
            color: #2980b9;
        }
        
        .dokuman-download i {
            margin-left: 5px;
        }
        
        /* Arama Kutusu */
        .dokuman-search-container {
            margin-bottom: 30px;
        }
        
        .dokuman-search {
            position: relative;
        }
        
        .dokuman-search input {
            width: 100%;
            padding: 12px 20px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        .dokuman-search i {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #7f8c8d;
        }
        
        /* Pagination */
        .dokuman-pagination {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .page-link {
            color: #3498db;
            border: 1px solid #dee2e6;
            padding: 8px 16px;
            margin: 0 4px;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.2s;
        }
        
        .page-link:hover, .page-link.active {
            background-color: #3498db;
            color: white;
            border-color: #3498db;
        }
        
        /* Yükleniyor Animasyonu */
        .loading-spinner {
            display: none;
            text-align: center;
            padding: 20px;
        }
        
        .spinner-border {
            width: 3rem;
            height: 3rem;
            color: #3498db;
        }
        
        /* Arama Sonuçları */
        .search-highlight {
            background-color: #fff8e1;
            padding: 2px 0;
            border-radius: 2px;
        }
        
        /* Responsive Düzenlemeler */
        @media (max-width: 768px) {
            .mudurluk-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .tum-dokumanlar-btn {
                margin-top: 10px;
            }
        }