/* Browse page specific styles */
.browse-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.breadcrumbs {
    color: #666;
    font-size: 14px;
}

.breadcrumbs a {
    color: #2196F3;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.sort-options {
    display: flex;
    gap: 15px;
}

.sort-link {
    color: #666;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sort-link:hover {
    background: #f0f7ff;
    color: #2196F3;
}

.sort-link.active {
    background: #2196F3;
    color: white;
}

.category-info {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-info h1 {
    margin-top: 0;
    font-size: 24px;
    color: #333;
}

.category-info p {
    color: #666;
    margin-bottom: 0;
}

.no-sets {
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .browse-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .sort-options {
        width: 100%;
        justify-content: space-between;
    }
}