.cat-breeds-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.filters-column {
    flex: 0 0 300px;
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
}

.results-column {
    flex: 1;
}

.filter-section {
    margin-bottom: 1.5rem;
}

.filter-section h4 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.1rem;
}

.filter-section label {
    display: block;
    margin: 0.3rem 0;
    font-size: 0.9rem;
    color: #666;
}

.alphabet-filter {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.letter-link {
    text-align: center;
    padding: 0.3rem;
    background: #fff;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
}

.letter-link:hover {
    background: #e0e0e0;
}

.reset-filters {
    width: 100%;
    padding: 0.8rem;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
}

.reset-filters:hover {
    background: #ff2222;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.cat-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.cat-card:hover {
    transform: translateY(-5px);
}

.cat-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cat-card-content {
    padding: 1rem;
}

.cat-card h3 {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .cat-breeds-container {
        flex-direction: column;
    }
    
    .filters-column {
        flex: none;
        width: 100%;
    }
}