.filter-container {
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.filter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Alfabe filtresi */
.alphabet-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.filter-link {
    padding: 8px 12px;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-link:hover {
    background: #f5f5f5;
    text-decoration: none;
}

.filter-link.active {
    background: #2271b1;
    color: white;
    border-color: #2271b1;
}

/* Arama kutusu */
.search-wrapper {
    text-align: center;
    margin: 10px 0;
}

.search-input {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    width: 100%;
    max-width: 300px;
    font-size: 14px;
}

/* Grid görünümü */
.items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
}

/* Kart stilleri */
.item-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.item-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.item-content {
    padding: 15px;
    text-align: center;
}

.item-content h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #333;
}

.item-count {
    font-size: 13px;
    color: #666;
}

/* Sayfalama */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0;
}

.page-link {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: #f5f5f5;
    text-decoration: none;
}

.page-link.active {
    background: #2271b1;
    color: white;
    border-color: #2271b1;
}

/* AJAX ve bildirim stilleri */
.ajax-loader {
    text-align: center;
    padding: 20px;
    color: #666;
}

.loading {
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.error-message {
    text-align: center;
    padding: 15px;
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin: 10px 0;
}

.info-message {
    text-align: center;
    padding: 15px;
    color: #0c5460;
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 4px;
    margin: 10px 0;
}

/* ... existing styles ... */ 