     
        /* Arama Kutusu - Yeni CSS sınıf isimleri */
        .baskan-search-container {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
        
        .baskan-search-box {
            position: relative;
        }
        
        .baskan-search-box input {
            padding-left: 45px;
            border-radius: 30px;
            height: 50px;
            border: 2px solid #e9ecef;
            transition: all 0.3s;
        }
        
        .baskan-search-box input:focus {
            border-color: #3498db;
            box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
        }
        
        .baskan-search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #6c757d;
            font-size: 1.2rem;
        }
        
        /* Başkan Kartları */
        .baskan-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
            border: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            background: #fff;
        }
        
        .baskan-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.15);
        }
        
        .baskan-img-container {
            height: 280px;
            overflow: hidden;
            position: relative;
        }
        
        .baskan-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .baskan-card:hover .baskan-img {
            transform: scale(1.05);
        }
        
        .baskan-period {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(44, 62, 80, 0.85);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .baskan-info {
            padding: 20px;
            text-align: center;
        }
        
        .baskan-name {
            font-size: 1.25rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
        }
        
        .baskan-dates {
            color: #7f8c8d;
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        
        /* On yıl başlıkları */
        .decade-title {
            background: #2c3e50;
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            display: inline-block;
            margin: 30px 0 20px;
            font-weight: 600;
        }
        
        /* Sonuç bulunamadı mesajı */
        .baskan-no-results {
            text-align: center;
            padding: 40px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        
        .baskan-no-results i {
            font-size: 3rem;
            color: #e74c3c;
            margin-bottom: 15px;
        }
        
        /* Yükleme animasyonu */
        .loading-spinner {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 200px;
        }
        
        .spinner-border {
            width: 3rem;
            height: 3rem;
            color: #3498db;
        }
        
        

    
        
        /* Responsive düzenlemeler */
        @media (max-width: 768px) {
            .baskan-img-container {
                height: 220px;
            }
            
         
        }