
        /* Muhtarlar Sayfası Özel Stilleri */
        .muhtar-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 30px;
            background: white;
            height: 100%;
        }
        
        .muhtar-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }
        
        .muhtar-img-container {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .muhtar-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .muhtar-card:hover .muhtar-img {
            transform: scale(1.05);
        }
        
        .muhtar-info {
            padding: 20px;
            display: flex;
            flex-direction: column;
            height: calc(100% - 220px);
        }
        
        .muhtar-name {
            font-size: 1.25rem;
            font-weight: 600;
            color: #2a4365;
            margin-bottom: 5px;
        }
        
        .muhtar-neighborhood {
            font-size: 1.1rem;
            color: #4a5568;
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .muhtar-contact {
            margin-bottom: 15px;
            flex-grow: 1;
        }
        
        .muhtar-contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 10px;
            color: #4a5568;
            line-height: 1.4;
        }
        
        .muhtar-contact-icon {
            min-width: 24px;
            margin-right: 10px;
            color: #3498db;
            margin-top: 2px;
        }
        
        .muhtar-contact-text {
            flex: 1;
        }
        
        .muhtar-contact-text a {
            color: #4a5568;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .muhtar-contact-text a:hover {
            color: #3498db;
            text-decoration: none;
        }
        
        .muhtar-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        
        .btn-location {
            background-color: #e74c3c;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 6px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            transition: background-color 0.2s;
            text-decoration: none !important;
        }
        
        .btn-location:hover {
            background-color: #c0392b;
            color: white;
        }
        
        .btn-location i {
            margin-right: 5px;
        }
        
        .btn-contact {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 6px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            transition: background-color 0.2s;
            text-decoration: none !important;
        }
        
        .btn-contact:hover {
            background-color: #2980b9;
            color: white;
        }
        
        .btn-contact i {
            margin-right: 5px;
        }
        
        .search-container {
            margin-bottom: 30px;
            position: relative;
        }
        
        .search-input {
            border-radius: 30px;
            padding: 12px 20px 12px 45px;
            border: 1px solid #ddd;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            width: 100%;
        }
        
        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #7f8c8d;
        }
        
        .no-results {
            text-align: center;
            padding: 40px;
            color: #7f8c8d;
        }
        
        .loading-spinner {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 200px;
        }
        
        .spinner-border {
            width: 3rem;
            height: 3rem;
            color: #3498db;
        }
        
        /* Pagination Styles */
        .pagination-container {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }
        
        .pagination {
            margin-bottom: 0;
        }
        
        .page-item.active .page-link {
            background-color: #3498db;
            border-color: #3498db;
        }
        
        .page-link {
            color: #3498db;
            padding: 0.5rem 0.75rem;
            border-radius: 5px;
            margin: 0 3px;
            border: 1px solid #dee2e6;
        }
        
        .page-link:hover {
            color: #2980b9;
            background-color: #e9ecef;
            border-color: #dee2e6;
        }
        
        .page-item.disabled .page-link {
            color: #6c757d;
        }
        
        .results-info {
            color: #6c757d;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .muhtar-img-container {
                height: 200px;
            }
            
            .muhtar-actions {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn-location, .btn-contact {
                width: 100%;
                justify-content: center;
            }
            
            .muhtar-info {
                height: auto;
            }
        }